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 = {
|
services = {
|
||||||
xserver.desktopManager.gnome.enable = true;
|
displayManager.defaultSession = "gnome";
|
||||||
displayManager = {
|
xserver = {
|
||||||
defaultSession = "gnome";
|
desktopManager.gnome.enable = true;
|
||||||
gdm = {
|
displayManager.gdm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland = 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; {
|
environment = with pkgs; {
|
||||||
systemPackages = [ gnome-tweaks ];
|
systemPackages = [ gnome-tweaks ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue