summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/core/bootloader.nix1
-rw-r--r--sys/wm/wm.nix4
2 files changed, 2 insertions, 3 deletions
diff --git a/sys/core/bootloader.nix b/sys/core/bootloader.nix
index 3564451..ff0aad5 100644
--- a/sys/core/bootloader.nix
+++ b/sys/core/bootloader.nix
@@ -16,6 +16,7 @@ in
}
(lib.mkIf (cfg == "systemd-boot") {
+ boot.consoleLogLevel = 0;
boot.loader = {
systemd-boot.enable = true;
systemd-boot.editor = false;
diff --git a/sys/wm/wm.nix b/sys/wm/wm.nix
index efe39ab..5374264 100644
--- a/sys/wm/wm.nix
+++ b/sys/wm/wm.nix
@@ -8,15 +8,13 @@ in
];
options.sys.wm.enable = lib.mkEnableOption "enables shared wm features";
-
- config = lib.mkIf (cfg.enable || cfg.niri.enable or false) {
+ config = lib.mkIf cfg.enable {
services.dbus.enable = true;
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
- config.common.default = [ "gtk" ];
};
};
}