diff --git a/system/starlight/default.nix b/system/starlight/default.nix index 6c2f1db..4b39261 100644 --- a/system/starlight/default.nix +++ b/system/starlight/default.nix @@ -11,7 +11,6 @@ ./boot-config.nix ./hardware-configuration.nix ./scripts.nix - ./osm.nix ../../sets/builder.nix ../../sets/disc.nix ../../sets/fpga.nix diff --git a/system/starlight/osm.nix b/system/starlight/osm.nix deleted file mode 100644 index ffbd304..0000000 --- a/system/starlight/osm.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, pkgs, ... }: - -{ - services.postgresql = { - enable = true; - package = pkgs.postgresql_16; - extraPlugins = with config.services.postgresql.package.pkgs; [ postgis ]; - - ensureDatabases = [ "osm" ]; - ensureUsers = [ { name = "artemis"; } ]; - }; -}