Files
snowfall-lib/modules/darwin/user/default.nix
anntnzrb 70ad5e14ae style(nix): apply nix fmt
Normalize formatting with the treefmt-based nix fmt configuration.
2026-03-16 14:30:34 -05:00

115 lines
3.0 KiB
Nix

{
pkgs,
lib,
config,
inputs,
...
}:
let
inherit (lib)
types
mkOption
mkDefault
mkRenamedOptionModule
foldl
optionalAttrs
;
cfg = config.snowfallorg;
user-names = builtins.attrNames cfg.users;
create-system-users =
system-users: name:
let
user = cfg.users.${name};
in
system-users
// (optionalAttrs user.create {
${name} = {
home = mkDefault user.home.path;
isHidden = mkDefault false;
};
});
in
{
imports = [
(mkRenamedOptionModule [ "snowfallorg" "user" ] [ "snowfallorg" "users" ])
];
options.snowfallorg = {
users = mkOption {
description = "User configuration.";
default = { };
type = types.attrsOf (
types.submodule (
{ name, ... }:
{
options = {
create = mkOption {
description = "Whether to create the user automatically.";
type = types.bool;
default = true;
};
home = {
enable = mkOption {
type = types.bool;
default = true;
};
path = mkOption {
type = types.str;
default = "/Users/${name}";
};
config = mkOption {
# HM-compatible options taken from:
# https://github.com/nix-community/home-manager/blob/0ee5ab611dc1fbb5180bd7d88d2aeb7841a4d179/nixos/common.nix#L14
type = types.submoduleWith {
specialArgs = {
osConfig = config;
modulesPath = "${inputs.home-manager}/modules";
}
// config.home-manager.extraSpecialArgs;
modules = [
(
{
lib,
modulesPath,
...
}:
{
imports = import "${modulesPath}/modules.nix" {
inherit pkgs lib;
useNixpkgsModule = !config.home-manager.useGlobalPkgs;
};
config = {
submoduleSupport.enable = true;
submoduleSupport.externalPackageInstall = config.home-manager.useUserPackages;
home.username = config.users.users.${name}.name;
home.homeDirectory = config.users.users.${name}.home;
nix.package = config.nix.package;
};
}
)
]
++ config.home-manager.sharedModules;
};
};
};
};
}
)
);
};
};
config = {
users.users = foldl create-system-users { } user-names;
};
}