blob: 504eee2a90be8c8115ad11103be0785c2d6e176e (
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
|
{ pkgs, lib, ... }: {
specialisation = {
wayland = {
configuration = {
programs = {
hyprland = {
enable = true; # enables Hyprland DM.
withUWSM = true; # NEW Universal Wayland Session Manager
};
};
};
};
xorg = {
configuration = lib.recursiveUpdate
{
services.xserver.displayManager.startx.enable = true;
}
(import ./dwm {
#inherit config;
inherit pkgs;
#inherit lib;
});
};
};
}
|