configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: only allow non-git ssh access to users on lan

+6
+6
hosts/bluepill/default.nix
··· 19 19 networking.hostName = "bluepill"; 20 20 networking.useNetworkd = true; 21 21 22 + services.openssh.extraConfig = '' 23 + AllowUsers git 24 + Match Address 192.168.4.0/22,100.64.0.0/10 25 + AllowUsers * 26 + ''; 27 + 22 28 system.autoUpgrade = { 23 29 enable = true; 24 30 flake = "github:intergrav/flake";