dotfiles/systems/_common/components/gnome_wayland.nix
2024-04-01 10:32:53 -05:00

18 lines
441 B
Nix

{ pkgs, ... }:
{
services.xserver.enable = true;
services.xserver.displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = true;
};
services.xserver.desktopManager.gnome.enable = true;
services.gnome.core-utilities.enable = false;
environment.systemPackages = with pkgs; [
gnome.dconf-editor
gnomeExtensions.workspace-switch-wraparound
# wayland clipboard in terminal
wl-clipboard
];
}