split flake into multiple files

This commit is contained in:
Vinzenz Schroeter 2025-06-07 15:40:38 +02:00
parent 981108e77a
commit 7a32bd5efd
3 changed files with 64 additions and 70 deletions

15
devShells.nix Normal file
View file

@ -0,0 +1,15 @@
{
pkgs,
selfPkgs,
...
}:
{
default = pkgs.mkShellNoCC {
inputsFrom = [ selfPkgs.local-content ];
packages = with pkgs; [
go
shellcheck
];
};
}