From ff69b90dfed36226046754c58251da0b065602f0 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Tue, 26 Aug 2025 22:49:17 -0600 Subject: [PATCH] general: enable dconf on all platforms --- sys/modules/baseline.nix | 2 ++ sys/modules/graphics.nix | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/baseline.nix b/sys/modules/baseline.nix index ccd14d7..f1beffe 100644 --- a/sys/modules/baseline.nix +++ b/sys/modules/baseline.nix @@ -61,6 +61,8 @@ in { enableNotifications = true; }; }; + + programs.dconf.enable = true; # Coredumps are a security risk and may use up a lot of disk space systemd.coredump.extraConfig = '' diff --git a/sys/modules/graphics.nix b/sys/modules/graphics.nix index 706c2d3..5b8503b 100644 --- a/sys/modules/graphics.nix +++ b/sys/modules/graphics.nix @@ -16,7 +16,5 @@ in { }; hardware.graphics.enable = true; - - programs.dconf.enable = true; }; }