mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
41 lines
905 B
Nix
41 lines
905 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.home-manager;
|
|
|
|
hmModule = types.submodule ({name, ...}: {
|
|
imports = import ../modules/modules.nix {
|
|
inherit lib pkgs;
|
|
nixosSubmodule = true;
|
|
};
|
|
|
|
config = {
|
|
home.username = config.users.users.${name}.name;
|
|
home.homeDirectory = config.users.users.${name}.home;
|
|
};
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
options = {
|
|
home-manager.users = mkOption {
|
|
type = types.attrsOf hmModule;
|
|
default = {};
|
|
description = ''
|
|
Per-user Home Manager configuration.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.users != {}) {
|
|
system.activationScripts.extraActivation.text =
|
|
lib.concatStringsSep "\n" (lib.mapAttrsToList (username: usercfg: ''
|
|
echo Activating home-manager configuration for ${username}
|
|
sudo -u ${username} ${usercfg.home.activationPackage}/activate
|
|
'') cfg.users);
|
|
};
|
|
}
|