chore: move .nix -> nix, remove unused flake input

This commit is contained in:
technofab 2025-09-15 10:48:33 +02:00
parent 695d36a457
commit 9cb2d2bef6
No known key found for this signature in database
8 changed files with 2 additions and 193 deletions

14
nix/repo/devShells.nix Normal file
View file

@ -0,0 +1,14 @@
{inputs, ...}: let
inherit (inputs) pkgs devshell;
in {
default = devshell.mkShell {
packages = [
pkgs.alejandra
];
env."HELLO".value = "world!";
enterShellCommands.test = {
text = "echo Hello $HELLO";
deps = ["env"];
};
};
}