added some language servers to laptop

This commit is contained in:
Geir Okkenhaug Jerstad 2024-07-09 10:54:17 +02:00
commit 101ed4307a
3 changed files with 13 additions and 2 deletions

View file

@ -19,8 +19,14 @@ in
# tailscale # tailscale
services.tailscale.enable = true; services.tailscale.enable = true;
# fail2ban # fail2ban/ssh
services.fail2ban.enable = true; services.fail2ban.enable = true;
services.openssh.listenAddresses = [
{
addr = "100.96.189.104";
port = 22;
}
];
# nginx reverse proxy # nginx reverse proxy
services.nginx = { services.nginx = {

View file

@ -69,6 +69,8 @@
# KDE # KDE
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
services.emacs.enable = true;
# Sway # Sway
programs.sway = { programs.sway = {
@ -114,6 +116,7 @@
shell = pkgs.zsh; shell = pkgs.zsh;
packages = with pkgs; [ packages = with pkgs; [
teams-for-linux firefox ncpamixer starship discord fastfetch teams-for-linux firefox ncpamixer starship discord fastfetch
emacsPackages.vterm
]; ];
}; };
@ -127,7 +130,8 @@
wayland wayland
xdg-utils xdg-utils
swaylock swayidle swaybg waybar fuzzel gammastep mako swaylock swayidle swaybg waybar fuzzel gammastep mako
neovim emacs neovim emacs
krita
neofetch glances inxi htop bottom neofetch glances inxi htop bottom
wget curl wget curl
git git

View file

@ -8,6 +8,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
podman-tui podman-tui
podman-compose podman-compose
podman-desktop
]; ];
} }