diff options
author | lassulus <lass@blue.r> | 2018-09-29 19:07:07 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-09-29 19:07:07 +0200 |
commit | b9380d6aba5f4ad04cedc4fb6a4213949791e830 (patch) | |
tree | 84b386b3c68aa46d982d3018984519914952e9d8 /jeschli/1systems/bln/hardware-configuration.nix | |
parent | d04fa5351158f91f8c38f1b0cc072def3f357e05 (diff) | |
parent | 6cf8b42c0bf5b256db0bcd3c051c528052cfe5b2 (diff) |
Merge remote-tracking branch 'enklave/master'
Diffstat (limited to 'jeschli/1systems/bln/hardware-configuration.nix')
-rw-r--r-- | jeschli/1systems/bln/hardware-configuration.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/jeschli/1systems/bln/hardware-configuration.nix b/jeschli/1systems/bln/hardware-configuration.nix deleted file mode 100644 index 35f0b3bca..000000000 --- a/jeschli/1systems/bln/hardware-configuration.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - imports = - [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> - ]; - - boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sr_mod" "rtsx_pci_sdmmc" ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - boot.initrd.luks.devices.crypted.device = "/dev/disk/by-uuid/25534522-5748-4dcc-a5ca-80a3ac70f59d"; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/496c8889-96db-446d-9bac-60d4347faeac"; - fsType = "ext4"; - }; - - fileSystems."/home" = - { device = "/dev/disk/by-uuid/2785adf5-a99e-49d7-86d6-99f393f457ea"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/927E-01A0"; - fsType = "vfat"; - }; - - swapDevices = [ ]; - - nix.maxJobs = lib.mkDefault 8; - powerManagement.cpuFreqGovernor = "powersave"; - - hardware.pulseaudio.enable = true; -} |