2024-08-08 07:14:07 +02:00
|
|
|
{ inputs, lib, pkgs, ... }:
|
2024-03-13 11:01:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2024-08-08 07:14:07 +02:00
|
|
|
"${inputs.cosmic-modules}/nixos/cosmic-greeter/module.nix"
|
2024-03-13 11:01:15 +01:00
|
|
|
];
|
|
|
|
config = {
|
2024-04-19 22:51:28 +02:00
|
|
|
services.displayManager.cosmic-greeter.enable = true;
|
2024-03-13 11:01:15 +01:00
|
|
|
};
|
|
|
|
}
|