refactor: No flakes for us

This commit is contained in:
2026-03-10 17:21:34 +00:00
commit c2d08f250f
7 changed files with 481 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
let
sources = import ./npins;
system = builtins.currentSystem;
pkgs = import sources.nixpkgs { inherit system; };
in
pkgs.mkShell {
packages = with pkgs; [
npins
];
}