2019-05-06 22:27:58 -06:00
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2019-06-08 21:20:03 -06:00
|
|
|
|
imports = [
|
|
|
|
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
2019-05-06 22:27:58 -06:00
|
|
|
|
../configuration.nix
|
2019-05-25 22:18:51 -06:00
|
|
|
|
../extra.nix
|
2019-05-06 23:51:26 -06:00
|
|
|
|
../dfinity.nix
|
2019-06-10 09:11:50 -06:00
|
|
|
|
/etc/nixos/cachix.nix
|
2019-06-08 21:20:03 -06:00
|
|
|
|
];
|
|
|
|
|
|
2019-07-10 14:36:26 -06:00
|
|
|
|
# disable card with bbswitch by default since we turn it on only on demand!
|
|
|
|
|
hardware.nvidiaOptimus.disable = true;
|
|
|
|
|
|
|
|
|
|
# install nvidia drivers in addition to intel one
|
|
|
|
|
hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ];
|
|
|
|
|
hardware.opengl.extraPackages32 = [ pkgs.linuxPackages.nvidia_x11.lib32 ];
|
|
|
|
|
|
2019-05-06 22:27:58 -06:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
services.xserver.libinput.enable = true;
|
|
|
|
|
|
2019-06-08 21:20:03 -06:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/58218a04-3ba1-4295-86bb-ada59f75e3b6";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2019-05-06 22:27:58 -06:00
|
|
|
|
|
|
|
|
|
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/8142784e-45c6-4a2b-91f1-09df741ac00f";
|
|
|
|
|
|
2019-06-08 21:20:03 -06:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/36E1-BE93";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
systemd.services.resume-fix = {
|
|
|
|
|
description = "Fixes acpi immediate resume after suspend";
|
|
|
|
|
wantedBy = [ "multi-user.target" "post-resume.target" ];
|
|
|
|
|
after = [ "multi-user.target" "post-resume.target" ];
|
|
|
|
|
script = ''
|
|
|
|
|
if ${pkgs.gnugrep}/bin/grep -q '\bXHC\b.*\benabled\b' /proc/acpi/wakeup; then
|
|
|
|
|
echo XHC > /proc/acpi/wakeup
|
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
};
|
2019-06-02 12:01:31 -06:00
|
|
|
|
|
2020-11-29 18:38:27 -07:00
|
|
|
|
swapDevices = [
|
|
|
|
|
{
|
|
|
|
|
device = "/swapfile";
|
|
|
|
|
priority = 0;
|
|
|
|
|
size = 4096;
|
|
|
|
|
}
|
|
|
|
|
];
|
2019-05-06 22:27:58 -06:00
|
|
|
|
|
2019-05-25 22:18:51 -06:00
|
|
|
|
networking.hostName = "ivanm-dfinity-razer";
|
2019-05-06 22:27:58 -06:00
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 12;
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
2020-11-29 19:09:07 -07:00
|
|
|
|
system.stateVersion = "18.03";
|
2019-05-06 22:27:58 -06:00
|
|
|
|
}
|