feat: devkit development shell

This commit is contained in:
Guz
2025-03-02 12:43:48 -03:00
parent 648a28ca7e
commit c6b1bbcb3d

View File

@@ -120,5 +120,24 @@
packages = forAllSystems (pkgs: {
devkit = import ./packages/devkit {inherit pkgs inputs;};
});
devShells = forAllSystems (pkgs: {
devkit = pkgs.mkShell {
name = "devkit";
packages = with self.packages.${pkgs.system}.devkit; [
ghostty
git
lazygit
starship
tmux
yazi
zellij
zsh
];
shellHook = ''
zsh
'';
};
});
};
}