diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-11 23:30:33 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-11 23:30:33 -0800 |
commit | 4de233a16b1d08c747a6a4754ca10e9a1ec0fd9c (patch) | |
tree | 941a5e5ad6111c5f5a7b651ee79916a184ca0d18 /hosts/uranus | |
parent | 850688caa225e126f676689c44087b3fd9c53c5e (diff) | |
download | nix-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
Diffstat (limited to 'hosts/uranus')
-rw-r--r-- | hosts/uranus/hardware-configuration.nix | 29 |
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; } |