mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:03:55 -05:00
18 lines
255 B
Nix
18 lines
255 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.alyraffauf.desktop.cinnamon.enable {
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
desktopManager.cinnamon = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|