1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00

nix-darwin: support package install through user packages

This commit is contained in:
Wael M. Nasreddine 2019-02-20 23:39:49 -08:00 committed by Robert Helgesson
parent d3fd287efb
commit efc795920b
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -11,6 +11,8 @@ let
config = {
submoduleSupport.enable = true;
submoduleSupport.externalPackageInstall = cfg.useUserPackages;
home.username = config.users.users.${name}.name;
home.homeDirectory = config.users.users.${name}.home;
};
@ -20,7 +22,13 @@ in
{
options = {
home-manager.users = mkOption {
home-manager = {
useUserPackages = mkEnableOption ''
installation of user packages through the
<option>users.users.&lt;name?&gt;.packages</option> option.
'';
users = mkOption {
type = types.attrsOf hmModule;
default = {};
description = ''
@ -28,6 +36,7 @@ in
'';
};
};
};
config = mkIf (cfg.users != {}) {
system.activationScripts.postActivation.text =