polkit: disable agent by default
This commit is contained in:
parent
d28a0f58e2
commit
c59eaa2d9f
3 changed files with 7 additions and 1 deletions
options/custom
|
@ -31,6 +31,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
polkit.agent = true;
|
||||||
uwsm.enable = true;
|
uwsm.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,6 +35,11 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
# Enable custom polkit agent
|
||||||
|
polkit.agent = !cfg.polkit;
|
||||||
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
# Enable rootless Xwayland
|
# Enable rootless Xwayland
|
||||||
xwayland-satellite.enable = cfg.xwayland;
|
xwayland-satellite.enable = cfg.xwayland;
|
||||||
|
|
|
@ -11,7 +11,7 @@ with lib; let
|
||||||
in {
|
in {
|
||||||
options.custom.programs.polkit = {
|
options.custom.programs.polkit = {
|
||||||
enable = mkOption {default = false;};
|
enable = mkOption {default = false;};
|
||||||
agent = mkOption {default = true;};
|
agent = mkOption {default = false;};
|
||||||
bypass = mkOption {default = false;};
|
bypass = mkOption {default = false;};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue