dotfiles/hosts/_common/components/gnome_xorg.nix
RingOfStorms (Josh) b9d85bde08 update
2024-07-12 14:03:48 -05:00

18 lines
342 B
Nix

{ pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = false;
};
desktopManager.gnome.enable = true;
};
services.gnome.core-utilities.enable = false;
environment.systemPackages = with pkgs; [
gnome.dconf-editor
xclip
];
}