diff options
Diffstat (limited to 'examples/nixos')
| -rw-r--r-- | examples/nixos/flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/nixos/flake.nix b/examples/nixos/flake.nix index f97422c..78bc39a 100644 --- a/examples/nixos/flake.nix +++ b/examples/nixos/flake.nix @@ -29,7 +29,12 @@ modules = [ # The following goes typically into ./configuration.nix { - environment.systemPackages = [ inputs.temp-postgres.packages.${system}.default ]; + environment.systemPackages = [ + inputs.temp-postgres.packages.${system}.default + + # Optionally select the PostgreSQL version provided by Nixpkgs. + #inputs.temp-postgres.packages.${system}.temp-postgres_18 + ]; users.users.stefan = { isNormalUser = true; |