diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | hardware-configuration.nix | 33 |
2 files changed, 1 insertions, 33 deletions
@@ -1 +1,2 @@ configuration.nix +hardware-configuration.nix diff --git a/hardware-configuration.nix b/hardware-configuration.nix deleted file mode 100644 index 5f08e39..0000000 --- a/hardware-configuration.nix +++ /dev/null @@ -1,33 +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, modulesPath, ... }: - -{ - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; - - boot.initrd.availableKernelModules = [ "nvme" "ehci_pci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; - boot.initrd.kernelModules = [ "dm-snapshot" ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/stuff/root"; - fsType = "ext4"; - }; - - fileSystems."/home" = - { device = "/dev/stuff/home"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/7178-78A1"; - fsType = "vfat"; - }; - - swapDevices = [ ]; - -} |