GNOME: Difference between revisions

Jasi (talk | contribs)
m Discover dconf settings: Use code font instead of erroneous backticks.
No edit summary
Line 272: Line 272:
=== Automatic login ===
=== Automatic login ===


As a potential workaround<ref>https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229</ref> for automatic login, include this in your NixOS configuration:
For automatic login, include this in your NixOS configuration:


{{File|3={
{{File|3={
   services.xserver.displayManager.autoLogin.enable = true;
   services.displayManager.autoLogin.enable = true;
   services.xserver.displayManager.autoLogin.user = "account";
   services.displayManager.autoLogin.user = "<your username>";
 
  systemd.services."getty@tty1".enable = false;
  systemd.services."autovt@tty1".enable = false;
}|name=/etc/nixos/configuration.nix|lang=nix}}
}|name=/etc/nixos/configuration.nix|lang=nix}}