update file-organization module

This commit is contained in:
2026-02-04 03:30:34 +01:00
parent 06a3b10079
commit e03b3d229d

View File

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