feat: refactor devshell as modular standalone path lol
This commit is contained in:
parent
41546aa83a
commit
9e6791569e
9 changed files with 284 additions and 79 deletions
9
devshells/default.nix
Normal file
9
devshells/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.mkShell {
|
||||
name = "default";
|
||||
packages = with pkgs; [ git nixfmt-classic ];
|
||||
shellHook = ''
|
||||
echo "Loaded default shell for dotfiles development"
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue