aboutsummaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/default.nix1
-rw-r--r--system/polkit/default.nix3
2 files changed, 4 insertions, 0 deletions
diff --git a/system/default.nix b/system/default.nix
index 5e88b586..c7a2400f 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -8,6 +8,7 @@
#./packages
./sound
./users # the position of this item is fully arbitrary
+ ./polkit
];
# TODO does this really remove all the bloatware, nixos installs by default?
environment = {
diff --git a/system/polkit/default.nix b/system/polkit/default.nix
new file mode 100644
index 00000000..9de68f35
--- /dev/null
+++ b/system/polkit/default.nix
@@ -0,0 +1,3 @@
+{...}: {
+ security.polkit.enable = true;
+}