Trying KDE
This commit is contained in:
parent
31f7c1116a
commit
4b01d1dcd7
2 changed files with 12 additions and 1 deletions
|
@ -9,7 +9,8 @@
|
|||
[
|
||||
# Desktop Environments
|
||||
./desktops/common.nix
|
||||
./desktops/gnome.nix
|
||||
./desktop/kde.nix
|
||||
# ./desktops/gnome.nix
|
||||
|
||||
# Services
|
||||
./services/openssh.nix
|
||||
|
|
10
desktops/kde.nix
Normal file
10
desktops/kde.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue