polkit agent
This commit is contained in:
parent
3fff2cd853
commit
a1cfd30341
2 changed files with 31 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
# apps
|
# apps
|
||||||
firefox mpv qalculate-gtk
|
firefox mpv qalculate-gtk
|
||||||
# misc
|
# misc
|
||||||
bat file which tree prismlauncher yt-dlp ffmpeg
|
bat file which tree prismlauncher yt-dlp ffmpeg gpu-screen-recorder gpu-screen-recorder-gtk
|
||||||
] ++ (with pkgs.my; [
|
] ++ (with pkgs.my; [
|
||||||
# none yet
|
# none yet
|
||||||
]) ++ (with pkgs.gnome; [
|
]) ++ (with pkgs.gnome; [
|
||||||
|
@ -44,6 +44,8 @@
|
||||||
hypridle.enable = true;
|
hypridle.enable = true;
|
||||||
hyprpaper.enable = true;
|
hyprpaper.enable = true;
|
||||||
|
|
||||||
|
polkit-gnome.enable = true;
|
||||||
|
|
||||||
dunst.enable = true;
|
dunst.enable = true;
|
||||||
rofi.enable = true;
|
rofi.enable = true;
|
||||||
nwg-drawer.enable = true;
|
nwg-drawer.enable = true;
|
||||||
|
|
28
modules/desktop/polkit-gnome.nix
Normal file
28
modules/desktop/polkit-gnome.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.polkit-gnome;
|
||||||
|
in {
|
||||||
|
options.modules.desktop.polkit-gnome = {
|
||||||
|
enable = mkEnableOption "Enable polkit-gnome, a simple polkit agent";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue