Fix fprintd
This commit is contained in:
parent
a558df302b
commit
980b771446
1 changed files with 19 additions and 0 deletions
|
@ -72,7 +72,26 @@
|
|||
pulse.enable = true;
|
||||
};
|
||||
|
||||
security.polkit.enable = true;
|
||||
|
||||
systemd = {
|
||||
user.services.polkit-lxqt = {
|
||||
description = "polkit-lxqt";
|
||||
wantedBy = ["graphical-session.target"];
|
||||
wants = ["graphical-session.target"];
|
||||
after = ["graphical-session.target"];
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.lxqt.lxqt-policykit}/bin/lxqt-policykit-agent";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
lxqt.lxqt-policykit
|
||||
gcc
|
||||
git
|
||||
grim
|
||||
|
|
Loading…
Reference in a new issue