From 93295369c033516c9f9147da0f773d91a6b51d39 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 18 Jun 2023 09:20:46 -0400 Subject: [PATCH] gnome: mkForce hyprland defaults This should be a temporary solution until modules are selectively imported and hyprland isn't included. --- modules/gnome.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/gnome.nix b/modules/gnome.nix index 18cf72b..acbebda 100644 --- a/modules/gnome.nix +++ b/modules/gnome.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: { services.xserver = { @@ -15,7 +15,7 @@ systemd.services."getty@tty1".enable = false; systemd.services."autovt@tty1".enable = false; - i18n.inputMethod = { + i18n.inputMethod = lib.mkForce { enabled = "ibus"; ibus.engines = with pkgs.ibus-engines; [ mozc ]; }; @@ -24,4 +24,6 @@ environment.gnome.excludePackages = [ pkgs.gnome-tour ]; hardware.pulseaudio.enable = false; + programs.hyprland.enable = lib.mkForce false; + services.greetd.enable = lib.mkForce false; }