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