add dragneel host

This commit is contained in:
TheWanderingCrow 2025-03-25 07:39:26 -04:00
parent 979ead7d35
commit 63fd280927
11 changed files with 169 additions and 1 deletions

View file

@ -6,6 +6,7 @@
imports = [
# Wayland desktops here
./wayland/sway.nix
./wayland/kde.nix
# X11 desktops here
./x11/i3.nix

View 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;
};
}