enable statx

This commit is contained in:
2023-10-01 23:14:05 +03:00
parent 5c83f7407a
commit 25e8191177
15 changed files with 110 additions and 122 deletions

View File

@@ -54,13 +54,14 @@
myData = import ./data.nix;
mkDeployPkgs = system:
import nixpkgs {
system = system;
inherit system;
overlays = [
deploy-rs.overlay
(_self: super: {
deploy-rs = {
inherit (import nixpkgs {system = system;}) deploy-rs;
lib = super.deploy-rs.lib;
inherit (import nixpkgs {inherit system;}) deploy-rs;
inherit (super.deploy-rs.lib);
};
})
];
@@ -234,7 +235,7 @@
hooks = {
alejandra.enable = true;
deadnix.enable = true;
#statix.enable = true;
statix.enable = true;
};
};
}