feat(flake): fix checks
This commit is contained in:
parent
e721cdf6d7
commit
643c0964c1
|
@ -175,9 +175,12 @@
|
|||
checks = builtins.mapAttrs
|
||||
(system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
||||
|
||||
} // flake-utils.lib.eachDefaultSystem (system:
|
||||
} // flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] (system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
pre-commit-check = pre-commit-hooks.lib.${system}.run {
|
||||
src = ./.;
|
||||
hooks = {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
./hardware/base.nix
|
||||
./hardware/gpu-intel.nix
|
||||
./hardware/bluetooth.nix
|
||||
./system
|
||||
./system/desktop.nix
|
||||
./desktop
|
||||
./virtualisation/docker.nix
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue