mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 20:25:38 +00:00
comments for devshells
This commit is contained in:
parent
9bca6e1321
commit
39d465c7c1
@ -82,13 +82,16 @@
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
# Used to run commands and edit files in this repo
|
|
||||||
devShells = forAllSystems (system:
|
devShells = forAllSystems (system:
|
||||||
let pkgs = import nixpkgs { inherit system; };
|
let pkgs = import nixpkgs { inherit system; };
|
||||||
in {
|
in {
|
||||||
|
|
||||||
|
# Used to run commands and edit files in this repo
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [ git stylua nixfmt shfmt shellcheck ];
|
buildInputs = with pkgs; [ git stylua nixfmt shfmt shellcheck ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Used for cloud and systems development and administration
|
||||||
devops = pkgs.mkShell {
|
devops = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
git
|
git
|
||||||
@ -101,6 +104,7 @@
|
|||||||
fluxcd
|
fluxcd
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
# Templates for starting other projects quickly
|
# Templates for starting other projects quickly
|
||||||
|
Loading…
Reference in New Issue
Block a user