diff --git a/nixos/components/gui/default.nix b/nixos/components/gui/default.nix index aed0201..3c4c18e 100644 --- a/nixos/components/gui/default.nix +++ b/nixos/components/gui/default.nix @@ -19,6 +19,7 @@ with lib; ./suspend.nix ./taskwarrior.nix ./vscode.nix + ./wayland.nix ./xorg ]; diff --git a/nixos/machines/cream/configuration.nix b/nixos/machines/cream/configuration.nix index 69bb336..5f7c48a 100644 --- a/nixos/machines/cream/configuration.nix +++ b/nixos/machines/cream/configuration.nix @@ -28,6 +28,8 @@ boot.tmp.useTmpfs = true; # make /tmp a tmpfs (performance!) components.gui.enable = true; + components.gui.xorg.enable = true; + components.gui.wayland.enable = false; components.mainUser.enable = true; components.media.enable = true; components.media.tts-client.enable = false;