summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-07-17 17:41:20 +0530
committersinanmohd <sinan@firemail.cc>2023-07-17 17:41:20 +0530
commite889a436e4382044c641c861797631275fb23338 (patch)
tree4aa09df54908bc0e6bf5e254beb3400bb3cc6995
parent58a50c74f65a1632d7102de4e3cfe13dab0273e3 (diff)
wayland: cleanup, group programs attributes together
-rw-r--r--features/wayland.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/features/wayland.nix b/features/wayland.nix
index b21534d..66a29a3 100644
--- a/features/wayland.nix
+++ b/features/wayland.nix
@@ -100,12 +100,16 @@ in
};
# misc
- security.polkit.enable = true;
hardware.opengl.enable = true;
- programs.dconf.enable = true;
- programs.xwayland.enable = true;
- programs.gnupg.agent = {
- enable = true;
- pinentryFlavor = "gnome3";
+
+ programs = {
+ dconf.enable = true;
+ xwayland.enable = true;
+ gnupg.agent = {
+ enable = true;
+ pinentryFlavor = "gnome3";
+ };
};
+
+ security.polkit.enable = true;
}