blob: f769d12a00d202e89131781d00d0aa3d9a896245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{ pkgs, ... }:
{
imports = [
../xserver
];
services = {
xserver = {
enable = true;
desktopManager.cinnamon = {
enable = true;
};
displayManager.lightdm = {
enable = true;
};
};
## Just in case this isn't automatically enabled
# cinnamon.apps.enable = true;
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
];
};
# Exclude specific packages
environment.cinnamon.excludePackages = [ ];
}
|
; all rights regarding Text and Data Mining (TDM) are reserved.