1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-04-08 23:27:00 +02:00
parent b7e93fc970
commit ebf2035c54
No known key found for this signature in database
30 changed files with 305 additions and 462 deletions
hosts/headful/work

View file

@ -0,0 +1,35 @@
{
lib,
pkgs,
...
}: {
services = {
desktopManager = {
cosmic.enable = lib.mkForce false;
plasma6.enable = true;
};
displayManager = {
cosmic-greeter.enable = lib.mkForce false;
sddm = {
enable = true;
wayland.enable = true;
};
};
};
environment.systemPackages = [
pkgs.kdePackages.sddm-kcm
pkgs.kdePackages.discover
pkgs.kdePackages.kate
];
programs = {
kdeconnect.enable = true;
partition-manager.enable = true;
};
xdg.portal = {
xdgOpenUsePortal = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
}