aboutsummaryrefslogtreecommitdiff
path: root/hosts/copenhagen/hardware-configuration.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-07-19 00:03:41 -0700
committerCaroline Larimore <caroline@larimo.re>2024-07-19 00:03:41 -0700
commit132ffeae5b7d4415a34d6c57748c193febe1bac9 (patch)
tree8c5233159e5f161a826142b7cbc3de4a0584d2fa /hosts/copenhagen/hardware-configuration.nix
parent0b974fb3a729952f94cddd7a81ff80773acea8cb (diff)
Remove ununsed hardware config
Diffstat (limited to 'hosts/copenhagen/hardware-configuration.nix')
-rw-r--r--hosts/copenhagen/hardware-configuration.nix39
1 files changed, 2 insertions, 37 deletions
diff --git a/hosts/copenhagen/hardware-configuration.nix b/hosts/copenhagen/hardware-configuration.nix
index be9ad1c..b9622d8 100644
--- a/hosts/copenhagen/hardware-configuration.nix
+++ b/hosts/copenhagen/hardware-configuration.nix
@@ -1,46 +1,11 @@
{ config, lib, pkgs, modulesPath, ... }:
+#TODO: regenerate on physical copenhagen hardware
+
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
- # boot = {
- # loader.grub = {
- # enable = true;
-
- # efiSupport = true;
- # efiInstallAsRemovable = true;
- # mirroredBoots = [
- # { devices = [ "nodev" ]; path = "/boot"; }
- # ];
- # };
-
- # initrd = {
- # availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
- # kernelModules = [ ];
- # };
-
- # kernelModules = [ "kvm-amd" ];
- # extraModulePackages = [ ];
-
- # supportedFilesystems = [ "ntfs" ];
- # };
-
- # fileSystems = {
- # "/" = { fsType = "zfs"; device = "zpool/root"; };
- # "/home" = { fsType = "zfs"; device = "zpool/home"; };
- # "/persist" = { fsType = "zfs"; device = "zpool/persist"; };
- # "/nix" = { fsType = "zfs"; device = "zpool/nix"; };
-
- # "/boot" = { fsType = "vfat"; device = "/dev/disk/by-uuid/12CE-A600"; };
-
- # "/mnt/4tb" = { fsType = "ext4"; device = "/dev/disk/by-label/4tb"; };
- # "/mnt/ssd" = { fsType = "ext4"; device = "/dev/disk/by-label/ssd-256"; };
- # };
-
- # swapDevices = [ ];
-
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- # hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}