feat: devkit development shell
This commit is contained in:
19
flake.nix
19
flake.nix
@@ -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
|
||||
'';
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user