19 lines
336 B
Nix
19 lines
336 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.sydnix.users;
|
|
in {
|
|
options.sydnix.users = {
|
|
users = lib.mkOption {
|
|
description =
|
|
"List of usernames whose home profiles should be imported.";
|
|
type = with lib.types; listOf str;
|
|
default = [];
|
|
};
|
|
};
|
|
|
|
config = {
|
|
users.mutableUsers = false;
|
|
};
|
|
}
|