From bc9a676bed1775a6ebfda35b499b7630cbcd5c7d Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Fri, 7 Jun 2024 12:27:36 +0200 Subject: [PATCH] Don't set system.stateVersion We want the project `flake.nix` to configure this --- NixSupport/nixosModules/appWithPostgres.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/NixSupport/nixosModules/appWithPostgres.nix b/NixSupport/nixosModules/appWithPostgres.nix index cc084bc82..b8d2136c1 100644 --- a/NixSupport/nixosModules/appWithPostgres.nix +++ b/NixSupport/nixosModules/appWithPostgres.nix @@ -21,8 +21,6 @@ in environment.systemPackages = with pkgs; [ vim postgresql ]; programs.vim.defaultEditor = true; - system.stateVersion = "23.05"; - # Allow public access networking.firewall.enable = true; networking.firewall.allowedTCPPorts = [ 80 22 ];