diff --git a/hosts/hitsugibune/matrix.nix b/hosts/hitsugibune/matrix.nix index 6d04515..ebec857 100644 --- a/hosts/hitsugibune/matrix.nix +++ b/hosts/hitsugibune/matrix.nix @@ -58,7 +58,7 @@ allowedUDPPortRanges = range; allowedUDPPorts = [3478 5349]; allowedTCPPortRanges = []; - allowedTCPPorts = [ 80 3478 5349]; + allowedTCPPorts = [80 3478 5349]; }; }; # get a certificate diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index 9cede44..7445888 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -14,7 +14,7 @@ cat = "bat"; cd = "z"; }; - initExtra = '' + initContent = '' bindkey -s ^f "mux-sessionizer\n" fastfetch @@ -30,7 +30,22 @@ oh-my-zsh = { enable = true; - plugins = ["git" "docker"]; + plugins = [ + "aliases" + "bgnotify" + "colored-man-pages" + "colorize" + "command-not-found" + "docker" + "docker-compose" + "gh" + "git" + "git-auto-fetch" + "golang" + "pass" + "safe-paste" + "tmuxinator" + ]; theme = "strug"; }; };