diff options
author | Justus Perlwitz <hello@justus.pw> | 2024-07-20 18:36:36 +0900 |
---|---|---|
committer | Justus Perlwitz <hello@justus.pw> | 2024-07-20 22:03:57 +0900 |
commit | e4fb29ca246eae5dd03fdbf8ab6f9479a58cfd36 (patch) | |
tree | 10db42e01fe8638bef8a5ee70da670bd9f2a4459 | |
parent | Update system.stateVersion to 24.05 (diff) | |
download | YubiKey-Guide-e4fb29ca246eae5dd03fdbf8ab6f9479a58cfd36.tar.gz |
Rename displayManager.autoLogin setting
This is based on a warning encountered when running the build with
nix build .#nixosConfigurations.yubikeyLive.x86_64-linux.config.system.build.isoImage
The message encountered was:
> trace: warning: The option `services.xserver.displayManager.autoLogin' defined in `/nix/store/sj9yrq21wbbfr5715hys3laa2qd6x471-source/flake.nix' has been renamed to `services.displayManager.autoLogin'.
-rw-r--r-- | flake.nix | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -118,10 +118,12 @@ }; displayManager = { lightdm.enable = true; - autoLogin = { - enable = true; - user = "nixos"; - }; + }; + }; + displayManager = { + autoLogin = { + enable = true; + user = "nixos"; }; }; # Host the `https://secure.research.vt.edu/diceware/` website offline |