forked from Bos55/nix-config
Compare commits
2 commits
5c94a11c37
...
c55843ffa7
| Author | SHA1 | Date | |
|---|---|---|---|
| c55843ffa7 | |||
| 17c5d0ee48 |
2 changed files with 4 additions and 3 deletions
|
|
@ -75,7 +75,9 @@
|
|||
'';
|
||||
}) (lib.filterAttrs (_: isDeployable) self.nixosConfigurations);
|
||||
|
||||
checks = builtins.mapAttrs (_: lib: lib.deployChecks self.deploy) deploy-rs.lib;
|
||||
checks = (builtins.mapAttrs (_: lib: lib.deployChecks self.deploy) deploy-rs.lib) // {
|
||||
integration-test = import ./test/vm-test.nix { inherit self nixpkgs system; };
|
||||
};
|
||||
|
||||
outputsBuilder = channels: {
|
||||
formatter = channels.nixpkgs.alejandra;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{ self, nixpkgs, ... }:
|
||||
{ self, nixpkgs, system, ... }:
|
||||
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
pkgs.nixosTest {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue