fix(gnome): change renamed options and disable ssh agent

This commit is contained in:
uku 2025-01-02 15:28:14 +01:00
parent f213c33012
commit dfaaa338cb
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o

View file

@ -1,10 +1,10 @@
{ pkgs, ... }:
{ lib, pkgs, ... }:
{
services = {
xserver.desktopManager.gnome.enable = true;
displayManager = {
defaultSession = "gnome";
gdm = {
displayManager.defaultSession = "gnome";
xserver = {
desktopManager.gnome.enable = true;
displayManager.gdm = {
enable = true;
wayland = true;
};
@ -20,6 +20,10 @@
];
};
# ssh-agent is provided by gnome-keyring-daemon
# (mabye soon by gcr, see NixOS/nixpkgs#140824)
programs.ssh.startAgent = lib.mkForce false;
environment = with pkgs; {
systemPackages = [ gnome-tweaks ];