We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6029bee commit e762507Copy full SHA for e762507
flake.nix
@@ -66,9 +66,8 @@
66
let
67
system = "x86_64-linux";
68
ci = import ./outputs/ci.nix { inherit inputs system; };
69
- inherit (inputs.nixpkgs.lib) mapAttrs;
70
in
71
- rec {
+ {
72
homeConfigurations =
73
import ./outputs/home-conf.nix { inherit inputs system; };
74
@@ -78,12 +77,5 @@
78
77
packages.${system} = {
79
inherit (ci) metals metals-updater;
80
};
81
-
82
- checks.${system} =
83
- let
84
- os = mapAttrs (_: c: c.config.system.build.toplevel) nixosConfigurations;
85
- hm = mapAttrs (_: c: c.activationPackage) homeConfigurations;
86
- in
87
- os // hm;
88
89
}
garnix.yaml
@@ -2,3 +2,5 @@ builds:
2
exclude: []
3
include:
4
- '*.x86_64-linux.*'
5
+ - homeConfigurations.*
6
+ - nixosConfigurations.*
0 commit comments