From d7df2578ea883c5514098aed1b6cba7fd83eb76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 6 Jan 2024 14:00:05 +0100 Subject: [PATCH] glotzbert: fix hardware config --- hosts/glotzbert/hardware-configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/glotzbert/hardware-configuration.nix b/hosts/glotzbert/hardware-configuration.nix index a2cc06df..580bbd39 100644 --- a/hosts/glotzbert/hardware-configuration.nix +++ b/hosts/glotzbert/hardware-configuration.nix @@ -14,46 +14,55 @@ fileSystems."/" = { device = "glotzbert/data"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/etc" = { device = "glotzbert/data/etc"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/nix" = { device = "glotzbert/nixos/nix"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/nix/store" = { device = "glotzbert/nixos/nix/store"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/var" = { device = "glotzbert/data/var"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/var/lib" = { device = "glotzbert/data/var/lib"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/var/log" = { device = "glotzbert/data/var/log"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/home" = { device = "glotzbert/data/home"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/nix/var" = { device = "glotzbert/nixos/nix/var"; fsType = "zfs"; + options = [ "zfsutil" ]; }; fileSystems."/boot" =