nixos/modules/DM/misc.nix
2023-04-21 10:23:15 -04:00

11 lines
155 B
Nix

_: {
options,
lib,
...
}:
with lib; {
options.localModules.DM.loginUser = mkOption {
type = types.nullOr types.str;
default = null;
};
}