Compare commits

..

1 commit

Author SHA1 Message Date
4f1c8d4e7f
Ssh, change default port to 22
To preserve current connections Onizuka's port was manually reverted to
the old 922 default, with the intention to follow that
2025-07-10 12:16:39 -07:00
4 changed files with 3 additions and 16 deletions

View file

@ -8,7 +8,6 @@
go.enable = lib.mkEnableOption "Enables go support";
nix.enable = lib.mkEnableOption "Enables nix support";
rust.enable = lib.mkEnableOption "Enables rust support";
typescript.enable = lib.mkEnableOption "Enables typescript support";
};
themes = {
catppuccin.enable = lib.mkEnableOption "Enables catppuccin theme";
@ -119,16 +118,6 @@
go-nvim
]);
typescript-pkg = lopts cfgl.typescript.enable (with pkgs.vimPlugins; [
{
plugin = typescript-tools-nvim;
type = "lua";
config = ''
require("typescript-tools").setup {}
'';
}
]);
catppuccin-pkg = lopts cfgt.catppuccin.enable (with pkgs.vimPlugins; [
{
plugin = catppuccin-nvim;
@ -162,8 +151,8 @@
'';
}
]);
in comments ++ fugitive ++ luasnip-pkg ++ lualine ++ nix-pkg ++ rust-pkg
++ go-pkg ++ wiki ++ catppuccin-pkg ++ typescript-pkg;
in comments ++ fugitive ++ luasnip-pkg ++ lualine ++
nix-pkg ++ rust-pkg ++ go-pkg ++ wiki ++ catppuccin-pkg;
};
};
}

View file

@ -25,7 +25,6 @@ in {
p.tree-sitter-go
p.tree-sitter-nix
p.tree-sitter-rust
p.tree-sitter-typescript
];
in with pkgs.vimPlugins; [
{

View file

@ -15,7 +15,7 @@
sshd = {
enable = true;
port = 922;
};
}
tailscale.enable = true;
tuigreet.enable = true;

View file

@ -58,7 +58,6 @@
c.enable = true;
nix.enable = true;
rust.enable = true;
typescript.enable = true;
};
neovim.plugins = {
comments.enable = true;