fix(nix): add nil and fix mixed tabs

This commit is contained in:
Harsh Shandilya 2022-12-23 08:43:36 +00:00
parent 127f6e4807
commit 51bba962f7

View File

@ -83,9 +83,9 @@
tag = "latest-${system}";
created = "now";
copyToRoot = pkgs.buildEnv {
name = "linkleaner";
paths = [ linkleaner ];
pathsToLink = [ "/bin" ];
name = "linkleaner";
paths = [ linkleaner ];
pathsToLink = [ "/bin" ];
};
config.Cmd = [ "${linkleaner}/bin/linkleaner" ];
};
@ -95,7 +95,7 @@
devShells.default = pkgs.mkShell {
inputsFrom = builtins.attrValues self.checks;
nativeBuildInputs = with pkgs; [ cargo-release rustNightly ];
nativeBuildInputs = with pkgs; [ cargo-release nil rustNightly ];
};
});
}