summaryrefslogtreecommitdiff
path: root/modules/hosts/sol/hardware.nix
diff options
context:
space:
mode:
authorDominik Kaiser2026-06-13 13:49:35 +0200
committerDominik Kaiser2026-06-13 13:49:35 +0200
commit9e1a56b7e1ebbfb4d7ded0b371393a70efa8dc64 (patch)
treeaed3060b6eb2201c09cd320930adaa965b7bbe09 /modules/hosts/sol/hardware.nix
parent0d7ee6f1a248a0e13a42c0db8ad8a8dd8125ccab (diff)
downloadnixos-9e1a56b7e1ebbfb4d7ded0b371393a70efa8dc64.tar.gz
nixos-9e1a56b7e1ebbfb4d7ded0b371393a70efa8dc64.zip
Fix sol hardware
Diffstat (limited to 'modules/hosts/sol/hardware.nix')
-rw-r--r--modules/hosts/sol/hardware.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/hosts/sol/hardware.nix b/modules/hosts/sol/hardware.nix
index ed34e41..9e682f5 100644
--- a/modules/hosts/sol/hardware.nix
+++ b/modules/hosts/sol/hardware.nix
@@ -12,34 +12,6 @@
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "tmpfs";
- fsType = "tmpfs";
- };
-
- fileSystems."/nix/.rw-store" =
- { device = "tmpfs";
- fsType = "tmpfs";
- };
-
- fileSystems."/iso" =
- { device = "/dev/mapper/ventoy";
- fsType = "iso9660";
- };
-
- fileSystems."/nix/.ro-store" =
- { device = "/iso/nix-store.squashfs";
- fsType = "squashfs";
- options = [ "loop" ];
- };
-
- fileSystems."/nix/store" =
- { device = "overlay";
- fsType = "overlay";
- };
-
- swapDevices = [ ];
-
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}