2021-12-19 09:33:33 +00:00
|
|
|
# This enables home-manager specific configs and an easier modularization for
|
|
|
|
# user-specific configurations. This is specifically for creating a convenient
|
|
|
|
# way to create users from `users/home-manager`.
|
|
|
|
#
|
|
|
|
# If you're looking to create users from `users/nixos`, you can just import
|
|
|
|
# them directly.
|
2021-12-06 10:12:00 +00:00
|
|
|
{ inputs, config, options, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.modules.users;
|
2021-12-19 09:33:33 +00:00
|
|
|
users = lib.attrNames cfg.users;
|
|
|
|
homeManagerUserModules = lib.getUsers "home-manager" users;
|
2021-12-06 10:22:08 +00:00
|
|
|
homeManagerModules = lib.filesToAttr ../home-manager;
|
2021-12-06 10:12:00 +00:00
|
|
|
|
2021-12-19 09:33:33 +00:00
|
|
|
homeManagerUsers = lib.attrNames homeManagerUserModules;
|
|
|
|
nonexistentUsers = lib.filter (name: !lib.elem name homeManagerUsers) users;
|
2021-12-06 10:12:00 +00:00
|
|
|
|
2021-12-19 09:33:33 +00:00
|
|
|
userOption = { name, config, ... }: {
|
|
|
|
options = {
|
|
|
|
settings = lib.mkOption {
|
|
|
|
type = lib.types.attrs;
|
|
|
|
description =
|
|
|
|
"Configuration to be merged in <literal>users.users.<name></literal> from NixOS configuration.";
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
uid = 1234;
|
|
|
|
description = "John Doe";
|
|
|
|
extraGroups = [ "wheel" "adbusers" "audio" ];
|
|
|
|
};
|
2021-12-06 10:12:00 +00:00
|
|
|
};
|
|
|
|
};
|
2021-12-19 09:33:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mapUsers = f: lib.mapAttrs f cfg.users;
|
2021-12-06 10:12:00 +00:00
|
|
|
in {
|
|
|
|
options.modules.users = {
|
|
|
|
users = lib.mkOption {
|
2021-12-19 09:33:33 +00:00
|
|
|
default = { };
|
2021-12-06 10:12:00 +00:00
|
|
|
description =
|
2021-12-19 09:33:33 +00:00
|
|
|
"A set of users from the `./users/home-manager` directory to be included in the NixOS config.
|
|
|
|
This will also create the appropriate user settings in <literal>users.users</literal> in the NixOS configuration.";
|
|
|
|
example = {
|
|
|
|
foo-dogsquared.settings = {
|
|
|
|
extraGroups = [ "wheel" "audio" "libvirtd" ];
|
|
|
|
};
|
|
|
|
alice = { };
|
|
|
|
bob = { };
|
|
|
|
};
|
|
|
|
type = with lib.types; attrsOf (submodule userOption);
|
2021-12-06 10:12:00 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-12-19 09:33:33 +00:00
|
|
|
imports = [ inputs.home-manager.nixosModules.home-manager ];
|
2021-12-06 10:12:00 +00:00
|
|
|
|
|
|
|
config = {
|
|
|
|
assertions = [{
|
|
|
|
assertion = (builtins.length nonexistentUsers) < 1;
|
|
|
|
message = "${
|
|
|
|
lib.concatMapStringsSep ", " (u: "'${u}'") nonexistentUsers
|
2021-12-19 09:33:33 +00:00
|
|
|
} is not found in the `./users/home-manager` directory.";
|
2021-12-06 10:12:00 +00:00
|
|
|
}];
|
2021-12-19 09:33:33 +00:00
|
|
|
|
|
|
|
# The global configuration for the home-manager module.
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.sharedModules = lib.modulesToList homeManagerModules;
|
|
|
|
|
|
|
|
# Mapping each users to the respective user configuration.
|
|
|
|
# Setting users for home-manager.
|
|
|
|
home-manager.users = mapUsers (user: _:
|
|
|
|
let
|
|
|
|
homeManagerUserModulePath = lib.getAttr user homeManagerUserModules;
|
|
|
|
homeManagerUserConfig = import homeManagerUserModulePath;
|
|
|
|
in homeManagerUserConfig);
|
|
|
|
|
|
|
|
# NixOS users.
|
|
|
|
users.users = mapUsers (user: opts:
|
|
|
|
let
|
|
|
|
defaultUserConfig = {
|
|
|
|
extraGroups = [ "wheel" ];
|
|
|
|
createHome = true;
|
|
|
|
home = "/home/${user}";
|
|
|
|
};
|
|
|
|
# TODO: Effectively override the option.
|
|
|
|
# We assume all users set with this module are normal users.
|
|
|
|
absoluteOverrides = { isNormalUser = true; };
|
|
|
|
in defaultUserConfig // opts.settings // absoluteOverrides);
|
2021-12-06 10:12:00 +00:00
|
|
|
};
|
|
|
|
}
|