1
0
forked from extern/nix-config

gnome: mkForce hyprland defaults

This should be a temporary solution until modules are selectively
imported and hyprland isn't included.
This commit is contained in:
Donovan Glover 2023-06-18 09:20:46 -04:00
parent 58d5e0737b
commit 93295369c0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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;
}