From 5d18d935ff732363db2858dd04a1d7d7245c620b Mon Sep 17 00:00:00 2001 From: Julian T Date: Fri, 26 Mar 2021 23:09:31 +0100 Subject: Move desktop and thinkpad options out of main file --- hardware-configuration.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 hardware-configuration.nix (limited to 'hardware-configuration.nix') diff --git a/hardware-configuration.nix b/hardware-configuration.nix new file mode 100644 index 0000000..e38eebc --- /dev/null +++ b/hardware-configuration.nix @@ -0,0 +1,33 @@ +# 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 = [ ]; + +} -- cgit v1.2.3