Created
May 15, 2018 14:13
-
-
Save yorickvP/02f724ba5b68e8d18a2fe24b2081750c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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, ... }: | |
| { | |
| imports = | |
| [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> | |
| ]; | |
| boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; | |
| boot.kernelModules = [ "kvm-intel" ]; | |
| boot.extraModulePackages = [ ]; | |
| fileSystems."/" = | |
| { device = "/dev/disk/by-uuid/a751e4ea-f1aa-48e1-9cbe-423878e29b62"; | |
| fsType = "btrfs"; | |
| }; | |
| boot.initrd.luks.devices."nix-crypt".device = "/dev/disk/by-uuid/320ef81d-283f-4916-ac26-ecfb0f31e549"; | |
| fileSystems."/boot" = | |
| { device = "/dev/disk/by-uuid/0E07-7805"; | |
| fsType = "vfat"; | |
| }; | |
| swapDevices = | |
| [ { device = "/dev/disk/by-uuid/d9c4c15b-0e9c-47f6-8675-93b1b8de5f9d"; } | |
| ]; | |
| nix.maxJobs = lib.mkDefault 4; | |
| powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment