diff options
author | sinanmohd <sinan@firemail.cc> | 2023-07-17 17:41:20 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-17 17:41:20 +0530 |
commit | e889a436e4382044c641c861797631275fb23338 (patch) | |
tree | 4aa09df54908bc0e6bf5e254beb3400bb3cc6995 | |
parent | 58a50c74f65a1632d7102de4e3cfe13dab0273e3 (diff) |
wayland: cleanup, group programs attributes together
-rw-r--r-- | features/wayland.nix | 16 |
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; } |