aboutsummaryrefslogtreecommitdiff
path: root/nix-darwin
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2018-04-03 00:53:08 -0400
committerRobert Helgesson <robert@rycee.net>2018-11-20 00:22:53 +0100
commita9a4fb641feb89da9f9d9140b5299cbb4c433d29 (patch)
treec4e5c8d6a1ceea9681332a8069d3f6f8270b1d45 /nix-darwin
parentf247b3b99ba0b6b69a21d2c765a7002fc40ae103 (diff)
nix-darwin: add system module for nix-darwin
Diffstat (limited to 'nix-darwin')
-rw-r--r--nix-darwin/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nix-darwin/default.nix b/nix-darwin/default.nix
new file mode 100644
index 00000000000..c2ec350cbc0
--- /dev/null
+++ b/nix-darwin/default.nix
@@ -0,0 +1,41 @@
+{ 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);
+ };
+}