fix(gnome): change renamed options and disable ssh agent
This commit is contained in:
parent
f213c33012
commit
dfaaa338cb
1 changed files with 9 additions and 5 deletions
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue