From 7fcf082811f34441afd74141fd6e1744295ba028 Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Tue, 4 Jun 2024 13:46:17 -0800 Subject: [PATCH] fix renamed options in flake --- configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 66c4a05..fd606aa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -52,7 +52,7 @@ services.avahi = { enable = true; - nssmdns = true; + nssmdns4 = true; publish = { enable = true; addresses = true; @@ -84,8 +84,8 @@ }; # Enable automatic login for the user. - services.xserver.displayManager.autoLogin.enable = true; - services.xserver.displayManager.autoLogin.user = "mir"; + services.displayManager.autoLogin.enable = true; + services.displayManager.autoLogin.user = "mir"; # services.getty.autologinUser = "mir" # Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229