NixOS deployment for LinuxLab
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

1 week ago
  1. { pkgs, ... }:
  2. {
  3. services.xserver = {
  4. enable = true;
  5. displayManager.gdm = {
  6. enable = true;
  7. wayland = true;
  8. };
  9. desktopManager.gnome.enable = true;
  10. xkb.layout = "de";
  11. };
  12. environment.gnome.excludePackages = with pkgs; [
  13. epiphany
  14. gnome-online-accounts-gtk
  15. gnome-tour
  16. gnome.geary
  17. gnome.gnome-calendar
  18. gnome.gnome-contacts
  19. ];
  20. programs.dconf = {
  21. enable = true;
  22. profiles.user.databases = [
  23. {
  24. settings = {
  25. # Set the color scheme to dark.
  26. "org/gnome/desktop/interface".color-scheme = "prefer-dark";
  27. "org/gnome/desktop/wm/keybindings".close = [ "<Super>q" ];
  28. };
  29. }
  30. ];
  31. };
  32. }