nixos-config/modules/extras/variables/users/default.nix

12 lines
161 B
Nix
Raw Normal View History

2025-01-03 17:52:33 -05:00
{ lib, config, ... }:
{
options.sysusers = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.sysusers = {
main = "jimbo";
};
}