hosts/ni/hardware/qol: add filesystem tools

This commit is contained in:
Gabriel Arazas 2023-12-13 10:51:57 +08:00
parent 9f673d64da
commit 3f507705fb
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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" ];