Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

modules/editor.nix: move shellcheck from modules/development/sh.nix

+4 -5
-4
modules/development/sh.nix
··· 1 - { pkgs, ... }: 2 - { 3 - users.users.mou.packages = with pkgs; [ shellcheck ]; 4 - }
+4 -1
modules/editor.nix
··· 11 11 ]; 12 12 }; 13 13 14 - users.users.mou.packages = with pkgs; [ kakoune-lsp ]; 14 + users.users.mou.packages = with pkgs; [ 15 + kakoune-lsp 16 + shellcheck 17 + ]; 15 18 }