add file organizaiton module

This commit is contained in:
2026-02-04 00:03:30 +01:00
parent 0c754590f1
commit 613a9c5540

View File

@@ -0,0 +1,29 @@
{
config,
lib,
pkgs,
namespace,
...
}:
let
inherit (lib) mkIf mkEnableOption;
inherit (lib.${namespace}) mkBoolOpt;
cfg = config.${namespace}.file-organization;
in
{
options.${namespace}.file-organization = {
enable = mkEnableOption "file organization software";
};
nixpkgs.config.allowUnfree = true;
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
# Add file organization packages here
# Example: organize-tool
ranger
fsearch
veracrypt
qdirstat
];
};
}