forked from Bos55/nix-config
Compare commits
2 commits
c55843ffa7
...
5c94a11c37
| Author | SHA1 | Date | |
|---|---|---|---|
| 5c94a11c37 | |||
| 3e37c44157 |
2 changed files with 3 additions and 4 deletions
|
|
@ -75,9 +75,7 @@
|
||||||
'';
|
'';
|
||||||
}) (lib.filterAttrs (_: isDeployable) self.nixosConfigurations);
|
}) (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: {
|
outputsBuilder = channels: {
|
||||||
formatter = channels.nixpkgs.alejandra;
|
formatter = channels.nixpkgs.alejandra;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{ self, nixpkgs, system, ... }:
|
{ self, nixpkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in
|
in
|
||||||
pkgs.nixosTest {
|
pkgs.nixosTest {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue