From e03b3d229d85407621a81e020f0c94523d7af86f Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Wed, 4 Feb 2026 03:30:34 +0100 Subject: [PATCH] update file-organization module --- modules/nixos/file-organization/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/modules/nixos/file-organization/default.nix b/modules/nixos/file-organization/default.nix index fb6850a..cf5dd68 100644 --- a/modules/nixos/file-organization/default.nix +++ b/modules/nixos/file-organization/default.nix @@ -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 ]; }; } \ No newline at end of file