hardware-configuration.nix (896B)
1 # Do not modify this file! It was generated by ‘nixos-generate-config’ 2 # and may be overwritten by future invocations. Please make changes 3 # to /etc/nixos/configuration.nix instead. 4 { config, lib, pkgs, modulesPath, ... }: 5 6 { 7 imports = [ ]; 8 9 boot.initrd.availableKernelModules = [ "ahci" ]; 10 boot.initrd.kernelModules = [ ]; 11 boot.kernelModules = [ "kvm-intel" ]; 12 boot.extraModulePackages = [ ]; 13 14 fileSystems."/" = 15 { 16 device = "/dev/disk/by-uuid/1f48f06c-0b18-4873-bba3-d5fd27c1e61e"; 17 fsType = "ext4"; 18 }; 19 20 fileSystems."/boot" = 21 { 22 device = "/dev/disk/by-uuid/9acb548b-d7b0-45c6-bf2e-39476d46b8be"; 23 fsType = "ext4"; 24 }; 25 26 fileSystems."/home" = 27 { 28 device = "/dev/disk/by-uuid/682fecaa-c686-43c3-867e-0fa904205eb0"; 29 fsType = "ext4"; 30 }; 31 32 swapDevices = [ ]; 33 34 powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; 35 }