mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
11 lines
155 B
Nix
11 lines
155 B
Nix
_: {
|
|
options,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; {
|
|
options.localModules.DM.loginUser = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
};
|
|
}
|