dotfiles/hosts/_common/components/plasma_xorg.nix
2024-07-12 11:54:01 -05:00

19 lines
339 B
Nix

{ pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = false;
};
displayManager.defaultSession = "plasmax11";
desktopManager.plasma6 = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
xclip
];
}