diff --git a/hosts/ni/default.nix b/hosts/ni/default.nix index 88747af2..72ced76e 100644 --- a/hosts/ni/default.nix +++ b/hosts/ni/default.nix @@ -62,10 +62,7 @@ profiles = { archiving.enable = true; browsers.chromium.enable = true; - filesystem = { - tools.enable = true; - setups.personal-webstorage.enable = true; - }; + filesystem.setups.personal-webstorage.enable = true; }; # Basically, the most basic nixpkgs configuration. diff --git a/hosts/ni/modules/hardware/qol.nix b/hosts/ni/modules/hardware/qol.nix index 5bd33682..7ccaccb9 100644 --- a/hosts/ni/modules/hardware/qol.nix +++ b/hosts/ni/modules/hardware/qol.nix @@ -9,6 +9,9 @@ in options.hosts.ni.hardware.qol.enable = lib.mkEnableOption "quality-of-life hardware features"; config = lib.mkIf cfg.enable { + # Bring in some of them good tools. + profiles.filesystem.tools.enable = true; + # We're using some better filesystems so we're using it. boot.initrd.supportedFilesystems = [ "btrfs" ]; boot.supportedFilesystems = [ "btrfs" ];