diff options
author | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 08:49:39 -0400 |
---|---|---|
committer | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 20:37:46 -0400 |
commit | 0267d0db393b7515d694d3a29997fb7be251872e (patch) | |
tree | 8cda5e9203b427d192dfd045c8315c9d273ce57b /options.nix | |
parent | hosts: add work vm (diff) | |
download | dotfiles-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.nix | 9 |
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 = []; + }; }; } |