templates/unflake: add non-flake devshell

This commit is contained in:
Infinidoge 2024-09-04 01:52:06 -04:00
parent 5d1990096e
commit e9b67d1b11
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
2 changed files with 9 additions and 0 deletions

1
templates/unflake/.envrc Normal file
View file

@ -0,0 +1 @@
use nix

View file

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> { };
devshell = import <devshell> { };
in
devshell.mkShell {
packages = with pkgs; [ ];
}