10 lines
191 B
Nix
10 lines
191 B
Nix
{ inputs, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${inputs.cosmic-modules}/nixos/cosmic-greeter/module.nix"
|
|
];
|
|
config = {
|
|
services.displayManager.cosmic-greeter.enable = true;
|
|
};
|
|
}
|