refactor(nix): migrate flake to flake-parts

This commit is contained in:
tux
2026-09-08 04:18:48 +05:30
parent a86a290e88
commit adf7c84269
6 changed files with 110 additions and 63 deletions

4
nix/shell.nix Normal file
View File

@@ -0,0 +1,4 @@
{ callPackage, go, }:
let mainPkg = callPackage ./package.nix { };
in mainPkg.overrideAttrs
(oa: { nativeBuildInputs = [ go ] ++ (oa.nativeBuildInputs or [ ]); })