diff options
author | ene <ene@sils.li> | 2023-02-25 20:10:05 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-25 20:10:05 +0100 |
commit | dd09acb21bebea886b2b3d4d70ab3dd738868f7f (patch) | |
tree | 2ed041d6bad4ced4b63d862cac28f33d9817add0 /system | |
parent | Fix(hosts/mammun): Update to generated hardware config (diff) | |
download | nixos-config-dd09acb21bebea886b2b3d4d70ab3dd738868f7f.tar.gz nixos-config-dd09acb21bebea886b2b3d4d70ab3dd738868f7f.zip |
Feat(wms): Add sway
Diffstat (limited to '')
-rw-r--r-- | system/default.nix | 1 | ||||
-rw-r--r-- | system/polkit/default.nix | 3 |
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; +} |