aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-11 23:30:33 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-11 23:30:33 -0800
commit4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c (patch)
tree941a5e5ad6111c5f5a7b651ee79916a184ca0d18
parent850688caa225e126f676689c44087b3fd9c53c5e (diff)
downloadnix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar.gz
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar.bz2
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar.lz
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar.xz
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.tar.zst
nix-4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c.zip
Remove now duplicated fileSystem declarations
-rw-r--r--hosts/uranus/hardware-configuration.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/hosts/uranus/hardware-configuration.nix b/hosts/uranus/hardware-configuration.nix
index 96dd160..051169d 100644
--- a/hosts/uranus/hardware-configuration.nix
+++ b/hosts/uranus/hardware-configuration.nix
@@ -13,35 +13,6 @@
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "rpool/local/root";
- fsType = "zfs";
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-label/boot";
- fsType = "vfat";
- };
-
- fileSystems."/nix" =
- { device = "rpool/local/nix";
- fsType = "zfs";
- };
-
- fileSystems."/root" =
- { device = "rpool/user/home/root";
- fsType = "zfs";
- };
-
- fileSystems."/home/nipsy" =
- { device = "rpool/user/home/nipsy";
- fsType = "zfs";
- };
-
- swapDevices =
- [ { device = "/dev/disk/by-label/swap"; }
- ];
-
#nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
#hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}