diff options
author | Roman Melnikov | 2024-06-12 14:07:33 +0200 |
---|---|---|
committer | GitHub | 2024-06-12 14:07:33 +0200 |
commit | 3867348fa92bc892eba5d9ddb2d7a97b9e127a8a (patch) | |
tree | 1c2cf8365dcabb72eb306e0e8577f2772197157b /nix/tests/deploy-flake.nix | |
parent | 254e9d150aa273591aee1433112a8781fd4ffd71 (diff) | |
parent | d3b11225fcb129ccb5e07b716b7484a93e68771d (diff) |
Merge pull request #272 from stuebinm/fix-nonflake-build
fix nix-build invocation in non-flake builds
Diffstat (limited to 'nix/tests/deploy-flake.nix')
-rw-r--r-- | nix/tests/deploy-flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/tests/deploy-flake.nix b/nix/tests/deploy-flake.nix index 3e1e426..47f0f5b 100644 --- a/nix/tests/deploy-flake.nix +++ b/nix/tests/deploy-flake.nix @@ -15,7 +15,7 @@ in { nixosConfigurations.server = nixpkgs.lib.nixosSystem { inherit system pkgs; - specialArgs = { inherit inputs; }; + specialArgs = { inherit inputs; flakes = import inputs.enable-flakes; }; modules = [ ./server.nix ./common.nix |