From 3ab66e301fa0246a69f0a2b0e1ddcbb7b8227bd8 Mon Sep 17 00:00:00 2001 From: Jaculabilis Date: Tue, 2 May 2023 02:30:57 +0000 Subject: [PATCH] Regenerate hardware config --- machine/catacomb/hardware-configuration.nix | 61 +++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/machine/catacomb/hardware-configuration.nix b/machine/catacomb/hardware-configuration.nix index 6b90166..c80cf9b 100644 --- a/machine/catacomb/hardware-configuration.nix +++ b/machine/catacomb/hardware-configuration.nix @@ -18,6 +18,66 @@ fsType = "ext4"; }; + fileSystems."/home/katydid" = + { device = "catapool/user/katydid"; + fsType = "zfs"; + }; + + fileSystems."/nas" = + { device = "catapool/nas"; + fsType = "zfs"; + }; + + fileSystems."/backup" = + { device = "catapool/backup"; + fsType = "zfs"; + }; + + fileSystems."/home/katydid/audio" = + { device = "catapool/user/katydid/audio"; + fsType = "zfs"; + }; + + fileSystems."/home/katydid/doc" = + { device = "catapool/user/katydid/doc"; + fsType = "zfs"; + }; + + fileSystems."/home/katydid/image" = + { device = "catapool/user/katydid/image"; + fsType = "zfs"; + }; + + fileSystems."/home/katydid/video" = + { device = "catapool/user/katydid/video"; + fsType = "zfs"; + }; + + fileSystems."/nas/video" = + { device = "catapool/nas/video"; + fsType = "zfs"; + }; + + fileSystems."/nas/doc" = + { device = "catapool/nas/doc"; + fsType = "zfs"; + }; + + fileSystems."/nas/image" = + { device = "catapool/nas/image"; + fsType = "zfs"; + }; + + fileSystems."/nas/audio" = + { device = "catapool/nas/audio"; + fsType = "zfs"; + }; + + fileSystems."/nas/game" = + { device = "catapool/nas/game"; + fsType = "zfs"; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -26,6 +86,7 @@ # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.eth0.useDHCP = lib.mkDefault true; + # networking.interfaces.nebula.beatific.useDHCP = lib.mkDefault true; # networking.interfaces.wlan0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";