feat: replace waybar/walker/swaylock/swaybg with noctalia shell

This commit is contained in:
2026-08-14 00:17:36 +07:00
parent 96369087b5
commit 68f37753f5
14 changed files with 342 additions and 775 deletions
+18
View File
@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
home.packages = [ pkgs.kdePackages.polkit-kde-agent-1 ];
systemd.user.services.polkit-kde-agent = {
Unit = {
Description = "KDE Polkit Authentication Agent";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.kdePackages.polkit-kde-agent-1}/libexec/polkit-kde-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
};
Install.WantedBy = [ "graphical-session.target" ];
};
}