diff options
author | Crazazy | 2022-02-03 18:51:05 +0100 |
---|---|---|
committer | Crazazy | 2022-02-10 16:13:34 +0100 |
commit | ed86dbf66e5755267c985b0ebb544c0f3b610e3c (patch) | |
tree | c5c9d51a1e68388316db873fe1c2b565d7b6dece /hardware-configuration.nix | |
parent | 3350c2c3e3ff9e846ce1675aae268976ac91a997 (diff) |
ignore hardware config
It's actually pretty easy to get it back once you remove it
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r-- | hardware-configuration.nix | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix deleted file mode 100644 index 8724157..0000000 --- a/hardware-configuration.nix +++ /dev/null @@ -1,64 +0,0 @@ -# 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" "usb_storage" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { - device = "none"; - fsType = "tmpfs"; - }; - - fileSystems."/nix" = - { - device = "/dev/disk/by-uuid/d93af828-9b06-426a-9247-8b853309d880"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { - device = "/dev/disk/by-uuid/A617-19CF"; - fsType = "vfat"; - }; - - fileSystems."/etc/nixos" = - { - device = "/nix/persist/etc/nixos"; - fsType = "none"; - options = [ "bind" ]; - }; - - fileSystems."/var/log" = - { - device = "/nix/persist/var/log"; - fsType = "none"; - options = [ "bind" ]; - }; - - fileSystems."/etc/NetworkManager" = - { - device = "/nix/persist/etc/NetworkManager"; - fsType = "none"; - options = [ "bind" ]; - }; - - swapDevices = [ - { - label = "swap"; - } - ]; - - nix.maxJobs = lib.mkDefault 8; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; -} |