Compare commits

..

No commits in common. "92a88573382f15be02efb8df9a27c050e6ba592f" and "464b0bd5fe9f16a64a8875703b58633711ab6de1" have entirely different histories.

3 changed files with 15 additions and 13 deletions

12
flake.lock generated
View file

@ -92,11 +92,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1748627197, "lastModified": 1748489961,
"narHash": "sha256-7dTtcq4Yi78cHfZcJaxlqkNs+cDBotrHjR9mkXfiUz4=", "narHash": "sha256-uGnudxMoQi2c8rpPoHXuQSm80NBqlOiNF4xdT3hhzLM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "379c9fb858ef9abe92d5590e7502a7c1387c076a", "rev": "95c988cf08e9a5a8fe7cc275d5e3f24e9e87bd51",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -142,11 +142,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1748460289, "lastModified": 1748370509,
"narHash": "sha256-7doLyJBzCllvqX4gszYtmZUToxKvMUrg45EUWaUYmBg=", "narHash": "sha256-QlL8slIgc16W5UaI3w7xHQEP+Qmv/6vSNTpoZrrSlbk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "96ec055edbe5ee227f28cdbc3f1ddf1df5965102", "rev": "4faa5f5321320e49a78ae7848582f684d64783e9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -32,9 +32,6 @@
# Ensure xserver is using the Nvidia drivers. # Ensure xserver is using the Nvidia drivers.
xserver.videoDrivers = [ "nvidia" ]; xserver.videoDrivers = [ "nvidia" ];
# iOS tethering, etc
usbmuxd.enable = true;
# Allow for RDP access. # Allow for RDP access.
gnome.gnome-remote-desktop.enable = true; gnome.gnome-remote-desktop.enable = true;

View file

@ -41,11 +41,16 @@
}; };
# We should have GNOME on all desktop installs. # We should have GNOME on all desktop installs.
desktopManager.gnome.enable = true; xserver = {
displayManager.gdm = {
# At the login screen, don't automatically fall asleep.
autoSuspend = false;
enable = true; enable = true;
# GNOME!
desktopManager.gnome.enable = true;
displayManager.gdm = {
# At the login screen, don't automatically fall asleep.
autoSuspend = false;
enable = true;
};
}; };
# We'd also like printing support. # We'd also like printing support.