Firefox config, neovim config, tailscale, polkit, updated binds

This commit is contained in:
Jurn Wubben 2025-02-22 00:35:15 +01:00
parent fff5484682
commit 356d96bce9
15 changed files with 392 additions and 83 deletions

View file

@ -0,0 +1,17 @@
{pkgs, ...}: {
systemd = {
user.services.polkit-gnome-authentication-agent-1 = {
description = "polkit-gnome-authentication-agent-1";
wantedBy = ["graphical-session.target"];
wants = ["graphical-session.target"];
after = ["graphical-session.target"];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
};
};
}