summaryrefslogtreecommitdiff
path: root/options.nix
diff options
context:
space:
mode:
authorFreya Murphy <fmurphy@redcom.com>2025-09-18 08:49:39 -0400
committerFreya Murphy <fmurphy@redcom.com>2025-09-18 20:37:46 -0400
commit0267d0db393b7515d694d3a29997fb7be251872e (patch)
tree8cda5e9203b427d192dfd045c8315c9d273ce57b /options.nix
parenthosts: add work vm (diff)
downloaddotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.gz
dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.bz2
dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.zip
mirror baseline system packages into home
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 = [];
+ };
};
}