add dragneel host
This commit is contained in:
parent
979ead7d35
commit
63fd280927
11 changed files with 169 additions and 1 deletions
|
|
@ -6,6 +6,7 @@
|
|||
imports = [
|
||||
# Wayland desktops here
|
||||
./wayland/sway.nix
|
||||
./wayland/kde.nix
|
||||
|
||||
# X11 desktops here
|
||||
./x11/i3.nix
|
||||
|
|
|
|||
17
modules/desktops/wayland/kde.nix
Normal file
17
modules/desktops/wayland/kde.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
lib.mkIf config.desktop.kde.enable {
|
||||
services.desktopManager.plasma6 = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue