Compare commits
No commits in common. "c7fc778a49f3991358ced075c351f829abda52e3" and "99080dbe84d17b4c2a32ce80c84d8eca75f4f9a1" have entirely different histories.
c7fc778a49
...
99080dbe84
1 changed files with 17 additions and 1 deletions
|
@ -67,7 +67,6 @@
|
||||||
"net.cozic.joplin_desktop"
|
"net.cozic.joplin_desktop"
|
||||||
"dev.aunetx.deezer"
|
"dev.aunetx.deezer"
|
||||||
"com.jgraph.drawio.desktop"
|
"com.jgraph.drawio.desktop"
|
||||||
"com.bitwarden.desktop"
|
|
||||||
];
|
];
|
||||||
services.flatpak.update.onActivation = true;
|
services.flatpak.update.onActivation = true;
|
||||||
services.flatpak.overrides = {
|
services.flatpak.overrides = {
|
||||||
|
@ -279,6 +278,23 @@
|
||||||
|
|
||||||
services.swaync = { enable = true; };
|
services.swaync = { enable = true; };
|
||||||
|
|
||||||
|
systemd.user.services.polkit-gnome-authentication-agent-1 = {
|
||||||
|
Unit = {
|
||||||
|
Description = "polkit-gnome-authentication-agent-1";
|
||||||
|
Wants = [ "graphical-session.target" ];
|
||||||
|
After = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
Service = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart =
|
||||||
|
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = 1;
|
||||||
|
TimeoutStopSec = 10;
|
||||||
|
};
|
||||||
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
};
|
||||||
|
|
||||||
programs.niri = {
|
programs.niri = {
|
||||||
settings = {
|
settings = {
|
||||||
input = {
|
input = {
|
||||||
|
|
Loading…
Reference in a new issue