pkgs: move to shared/pkgs

This commit is contained in:
Anthony Rodriguez 2024-12-18 11:00:24 +01:00
parent 587e8d321b
commit 1c3665ec1c
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
6 changed files with 1 additions and 1 deletions

View file

@ -24,7 +24,7 @@
});
formatter = eachSystem (pkgs: treefmtEval.${pkgs.system}.config.build.wrapper);
nixosConfigurations = import ./hosts {inherit inputs;};
packages = eachSystem (pkgs: import ./pkgs {inherit inputs pkgs;});
packages = eachSystem (pkgs: import ./shared/pkgs {inherit inputs pkgs;});
deploy.nodes = import ./nodes {inherit inputs;};
checks = builtins.mapAttrs (_: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
};