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'.pull/453/head
parent
967456100c
commit
e4fb29ca24
|
@ -118,12 +118,14 @@
|
||||||
};
|
};
|
||||||
displayManager = {
|
displayManager = {
|
||||||
lightdm.enable = true;
|
lightdm.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
displayManager = {
|
||||||
autoLogin = {
|
autoLogin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "nixos";
|
user = "nixos";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
# Host the `https://secure.research.vt.edu/diceware/` website offline
|
# Host the `https://secure.research.vt.edu/diceware/` website offline
|
||||||
nginx = {
|
nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue