diff --git a/flake.nix b/flake.nix index 2bcc41c..71f42e0 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 8 current 2025-10-05 19:42:22 25.05.20251001.5b5be50 6.12.49 * +# generation: 9 current 2025-10-05 19:58:43 25.05.20251001.5b5be50 6.12.49 * { description = "blakes nix config"; inputs = { diff --git a/modules/homelab/zfs.nix b/modules/homelab/zfs.nix index b229cf5..53a29e7 100644 --- a/modules/homelab/zfs.nix +++ b/modules/homelab/zfs.nix @@ -23,7 +23,11 @@ in services.zfs = { autoScrub.enable = true; autoScrub.interval = "weekly"; - + }; + + fileSystems."/holocron" = { + device = "holocron"; + fsType = "zfs"; }; }; diff --git a/modules/system/nvidia.nix b/modules/system/nvidia.nix index e4fa476..bc5cff1 100644 --- a/modules/system/nvidia.nix +++ b/modules/system/nvidia.nix @@ -25,5 +25,6 @@ in # enable docker gpu passthrough virtualisation.docker.enableNvidia = true; + hardware.nvidia-container-toolkit.enable = true; }; }