puter/class/desktop/plasma.nix

26 lines
448 B
Nix
Raw Normal View History

2024-04-04 19:05:02 +00:00
{
lib,
pkgs,
...
}: {
services = {
2024-03-08 21:46:46 +00:00
desktopManager.plasma6.enable = true;
2024-04-13 18:41:18 +00:00
displayManager.sddm = {
2024-04-04 19:05:02 +00:00
enable = true;
2024-04-13 18:41:18 +00:00
wayland.enable = true;
2024-02-04 20:51:11 +00:00
};
};
2024-07-01 22:06:05 +00:00
environment.systemPackages = with pkgs.kdePackages; [sddm-kcm discover kate];
programs = {
kdeconnect.enable = true;
partition-manager.enable = true;
2024-02-04 20:51:11 +00:00
};
2024-04-04 19:05:02 +00:00
xdg.portal = {
xdgOpenUsePortal = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
2024-02-04 20:51:11 +00:00
}