25 lines
456 B
Nix
25 lines
456 B
Nix
let
|
|
sources = import ./nix;
|
|
system = builtins.currentSystem;
|
|
pkgs = import sources.nixpkgs {
|
|
inherit system;
|
|
config = { };
|
|
overlays = [ ];
|
|
};
|
|
nixpkgs = sources.nixpkgs;
|
|
nixidy = import sources.nixidy { inherit nixpkgs; };
|
|
in
|
|
{
|
|
shell = pkgs.mkShellNoCC {
|
|
name = "clstr";
|
|
nativeBuildInputs = with pkgs; [
|
|
nixidy.nixidy
|
|
npins
|
|
nixfmt-rfc-style
|
|
just
|
|
fzf
|
|
];
|
|
NPINS_DIRECTORY = "nix";
|
|
};
|
|
}
|