mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
hosts/ni/hardware/qol: add filesystem tools
This commit is contained in:
parent
9f673d64da
commit
3f507705fb
@ -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.
|
||||
|
@ -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" ];
|
||||
|
Loading…
Reference in New Issue
Block a user