Files
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

19 lines
283 B
Nix
Executable File

{
config,
lib,
namespace,
...
}:
let
cfg = config.${namespace}.desktop.cosmic;
in
{
imports = [ ./options.nix ];
config = lib.mkIf cfg.enable {
services = {
desktopManager.cosmic.enable = true;
displayManager.cosmic-greeter.enable = true;
};
};
}