Trying KDE

This commit is contained in:
iFargle 2023-07-06 20:20:12 +09:00
parent 31f7c1116a
commit 4b01d1dcd7
2 changed files with 12 additions and 1 deletions

View file

@ -9,7 +9,8 @@
[ [
# Desktop Environments # Desktop Environments
./desktops/common.nix ./desktops/common.nix
./desktops/gnome.nix ./desktop/kde.nix
# ./desktops/gnome.nix
# Services # Services
./services/openssh.nix ./services/openssh.nix

10
desktops/kde.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, unstable, ... }: {
# Use "unstable" instead of "pkgs" to get the latest packages, defined in "flake.nix"
services.xserver = with unstable.pkgs; {
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
# Enable the GNOME Desktop Environment.
displayManager.ssdm.enable = true;
desktopManager.kde.enable = true;
displayManager.defaultSession = "plastmawayland";
};
}