diff options
author | Soispha <soispha@vhack.eu> | 2023-05-03 07:52:01 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:33:08 +0200 |
commit | 9a103b14d674b8f40eaea15aa9bb16817c827d25 (patch) | |
tree | 3a66a546d379ab701424a565b6ececdecdecbcae /flake/default.nix | |
parent | Chore(flake): Update (diff) | |
download | nixos-config-9a103b14d674b8f40eaea15aa9bb16817c827d25.tar.gz nixos-config-9a103b14d674b8f40eaea15aa9bb16817c827d25.zip |
Feat(flake/default): Add cocogitto to devShell
Diffstat (limited to 'flake/default.nix')
-rw-r--r-- | flake/default.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/flake/default.nix b/flake/default.nix index 705211e1..addd011c 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -117,8 +117,18 @@ in { devShells."${system}" = { default = pkgs.mkShell { - packages = with pkgs; [nil alejandra statix ragenix.packages."${system}".default shellcheck ltex-ls yamllint]; + packages = with pkgs; [ + nil + alejandra + statix + ragenix.packages."${system}".default + shellcheck + ltex-ls + yamllint + cocogitto + ]; }; }; } # vim: ts=2 + |