diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-04-16 15:32:04 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-04-16 15:32:04 +0200 |
| commit | bd8c98190fff0e34a3f37276b538093c07db11f5 (patch) | |
| tree | 14674c63b69fc1c8b14eafbad9c3907873a477de | |
| parent | b5442f6657d4245866104989a1f75ec0a5fe06ed (diff) | |
| download | temp-postgres-bd8c98190fff0e34a3f37276b538093c07db11f5.tar.gz | |
Enable auto-login for NixOS example configuration
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | examples/nixos/flake.nix | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ddeb67..f148f39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ The format is based on [Keep A Changelog][] and this project adheres to [Semanti * Added PostgreSQL version-specific packages to Nix flake +### Changed + +* Enabled auto-login for NixOS example configuration + ## [0.3.0] - 2026-04-16 ### Added diff --git a/examples/nixos/flake.nix b/examples/nixos/flake.nix index 78bc39a..9bab354 100644 --- a/examples/nixos/flake.nix +++ b/examples/nixos/flake.nix @@ -41,6 +41,7 @@ extraGroups = [ "wheel" ]; initialPassword = "sesame"; }; + services.getty.autologinUser = "stefan"; system.stateVersion = "26.05"; # Dummy values to avoid failed assertions during `nix flake check`. |