You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
704 B
37 lines
704 B
{ pkgs, ... }:
|
|
|
|
{
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.gdm = {
|
|
enable = true;
|
|
wayland = true;
|
|
};
|
|
desktopManager.gnome.enable = true;
|
|
xkb.layout = "de";
|
|
};
|
|
|
|
environment.gnome.excludePackages = with pkgs; [
|
|
epiphany
|
|
gnome-online-accounts-gtk
|
|
gnome-tour
|
|
gnome.geary
|
|
gnome.gnome-calendar
|
|
gnome.gnome-contacts
|
|
];
|
|
|
|
programs.dconf = {
|
|
enable = true;
|
|
profiles.user.databases = [
|
|
{
|
|
settings = {
|
|
# Set the color scheme to dark.
|
|
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
|
|
|
"org/gnome/desktop/wm/keybindings".close = [ "<Super>q" ];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|
|
|