From 113a6f9fe6603be7488c1c9a5bb4b1b7c5bb2f71 Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 19 May 2024 01:27:56 +0300 Subject: Move NixOS test initialization to the package This allows to initialize tests easier and not have them depend on the flake itself. This might be useful if I ever have to build this package without a flake. --- nixos-tests/postgres-smoke-test.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'nixos-tests/postgres-smoke-test.nix') diff --git a/nixos-tests/postgres-smoke-test.nix b/nixos-tests/postgres-smoke-test.nix index 51d53c7..59096d3 100644 --- a/nixos-tests/postgres-smoke-test.nix +++ b/nixos-tests/postgres-smoke-test.nix @@ -1,10 +1,9 @@ -kittybox: { lib, ... }: { name = "nixos-kittybox"; nodes = { kittybox = { config, pkgs, lib, ... }: { - imports = [ kittybox.nixosModules.default ]; + imports = [ ../configuration.nix ]; services.postgresql = { enable = true; -- cgit 1.4.1