mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 16:23:07 +01:00
17 lines
273 B
Nix
17 lines
273 B
Nix
|
{
|
||
|
inputs,
|
||
|
lib,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
# Enable the x11 windowing system
|
||
|
services.xserver.enable = true;
|
||
|
|
||
|
# Enable Cosmic DE
|
||
|
services.desktopManager.cosmic.enable = true;
|
||
|
|
||
|
# Enable Cosmic greeter
|
||
|
services.displayManager.cosmic-greeter.enable = true;
|
||
|
}
|