hosts: steamdeck: prepare gnome gdm

This commit is contained in:
Kabbone 2023-07-29 08:59:44 +02:00
parent 8e61ea6503
commit 866576959b
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 13 additions and 3 deletions

View File

@ -17,7 +17,7 @@
# └─ default.nix
#
{ config, pkgs, user, ... }:
{ config, pkgs, user, jovian-nixos, ... }:
{
imports = # For now, if applying to other system, swap files

View File

@ -29,9 +29,19 @@
desktopManager.gnome.enable = true;
displayManager = {
gdm.wayland = true;
gdm.enable = true;
# gdm.settings = {
# daemon = {
# AutomaticLoginEnable=true;
# AutomaticLogin="kabbone";
# };
# security = {
# DisallowTCP=true;
# };
# };
# defaultSession = "steam-wayland";
autoLogin.enable = true;
autoLogin.user = "kabbone";
# autoLogin.enable = true;
# autoLogin.user = "kabbone";
};
};
};