summaryrefslogtreecommitdiff
path: root/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'options.nix')
-rw-r--r--options.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/options.nix b/options.nix
index db68544..2dcdc54 100644
--- a/options.nix
+++ b/options.nix
@@ -483,5 +483,14 @@ in {
description = "Extra home manager configuration";
default = {};
};
+
+ #
+ # Extra packages to add to home to mirror in system config
+ #
+ extraPackages = mkOption {
+ type = with types; listOf package;
+ description = "List of system pacakges to mirror into home env";
+ default = [];
+ };
};
}