mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 18:19:09 +00:00
hosts/ni/hardware/qol: add filesystem tools
This commit is contained in:
parent
9f673d64da
commit
3f507705fb
@ -62,10 +62,7 @@
|
|||||||
profiles = {
|
profiles = {
|
||||||
archiving.enable = true;
|
archiving.enable = true;
|
||||||
browsers.chromium.enable = true;
|
browsers.chromium.enable = true;
|
||||||
filesystem = {
|
filesystem.setups.personal-webstorage.enable = true;
|
||||||
tools.enable = true;
|
|
||||||
setups.personal-webstorage.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Basically, the most basic nixpkgs configuration.
|
# Basically, the most basic nixpkgs configuration.
|
||||||
|
@ -9,6 +9,9 @@ in
|
|||||||
options.hosts.ni.hardware.qol.enable = lib.mkEnableOption "quality-of-life hardware features";
|
options.hosts.ni.hardware.qol.enable = lib.mkEnableOption "quality-of-life hardware features";
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
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.
|
# We're using some better filesystems so we're using it.
|
||||||
boot.initrd.supportedFilesystems = [ "btrfs" ];
|
boot.initrd.supportedFilesystems = [ "btrfs" ];
|
||||||
boot.supportedFilesystems = [ "btrfs" ];
|
boot.supportedFilesystems = [ "btrfs" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user