feat: disable flakes, use normal nix shell

This commit is contained in:
2024-12-04 15:15:31 +01:00
parent 1feb953dc4
commit 6ba97b006b
8 changed files with 237 additions and 8 deletions
+24
View File
@@ -0,0 +1,24 @@
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";
};
}