summaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2021-03-26 23:24:31 +0100
committerJulian T <julian@jtle.dk>2021-03-26 23:26:43 +0100
commitea6c7b65ba32b4be09ef4c7a8532b239c03f120d (patch)
tree2f6b3df88ddced3f02093fc47ff8fb4d1bf3733a /hardware-configuration.nix
parenta6e54152bddf43600e5b9f83c187d3b3aee6411a (diff)
Remove hardware-configuration file
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix33
1 files changed, 0 insertions, 33 deletions
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 = [ ];
-
-}