Initial commit

This commit is contained in:
2025-09-01 14:21:12 +03:00
commit 5787dcd528
47 changed files with 3079 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{
lib,
pkgs,
...
}:
{
services = {
desktopManager = {
plasma6.enable = true;
};
displayManager = {
sddm = {
enable = true;
enableHidpi = true;
};
};
};
environment.systemPackages = with pkgs.kdePackages; [
yakuake
spectacle
elisa
dolphin-plugins
xwaylandvideobridge
];
programs = {
zsh.enable = true;
kdeconnect.enable = true;
kde-pim.enable = false;
};
xdg.portal.config.common = {
default = lib.mkDefault [
"kde"
];
};
xdg.portal.extraPortals = lib.mkDefault [
pkgs.kdePackages.xdg-desktop-portal-kde
];
}