Update gnome.nix

This commit is contained in:
ediblerope 2025-12-03 16:02:44 +00:00 committed by GitHub
parent 982de5e524
commit 49ac223049
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,13 @@
{ {
# Apply GNOME settings on login # Enable Gnome
# Enable the X11 windowing system.
services.xserver.enable = true;
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
# Apply GNOME settings on login and log
systemd.user.services.gnomeSettings = { systemd.user.services.gnomeSettings = {
description = "Apply GNOME custom settings"; description = "Apply GNOME custom settings";
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];