tries to fix ssh config for vps-sm

This commit is contained in:
Dennis Schoepf 2025-11-09 16:23:49 +01:00
parent 3baae32887
commit 1a6aa16251
4 changed files with 10 additions and 15 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { _config, pkgs, ... }:
{ {
home.username = "dennis"; home.username = "dennis";

View file

@ -1,8 +1,8 @@
{ {
inputs, inputs,
outputs, outputs,
lib, _lib,
config, _config,
pkgs, pkgs,
... ...
}: }:
@ -99,6 +99,8 @@
"p11-kit" "p11-kit"
"mas" "mas"
"go" "go"
"ca-certificates"
"gettext"
]; ];
casks = [ casks = [

View file

@ -1,7 +1,7 @@
{ {
inputs, inputs,
outputs, outputs,
lib, _lib,
config, config,
pkgs, pkgs,
... ...
@ -12,6 +12,7 @@
./networking.nix ./networking.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
inputs.ip-whitelist.nixosModules.default inputs.ip-whitelist.nixosModules.default
../../modules/openssh
../../modules/vaultwarden ../../modules/vaultwarden
../../modules/uptime-kuma ../../modules/uptime-kuma
../../modules/homepage ../../modules/homepage
@ -124,16 +125,6 @@
}; };
# Services # Services
# SSH
services.openssh = {
settings = {
X11Forwarding = false;
PermitRootLogin = "no";
PasswordAuthentication = false;
};
openFirewall = false;
};
# Tailscale # Tailscale
services.tailscale.enable = true; services.tailscale.enable = true;

View file

@ -15,7 +15,9 @@ return {
nerd_font_variant = "mono", nerd_font_variant = "mono",
}, },
completion = { completion = {
documentation = { auto_show = false }, documentation = {
auto_show = false,
},
list = { list = {
selection = { selection = {
preselect = false, preselect = false,