tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
fix: only allow non-git ssh access to users on lan
devins.page
1 month ago
66f7a743
06b0bc2c
+6
1 changed file
expand all
collapse all
unified
split
hosts
bluepill
default.nix
+6
hosts/bluepill/default.nix
···
19
19
networking.hostName = "bluepill";
20
20
networking.useNetworkd = true;
21
21
22
22
+
services.openssh.extraConfig = ''
23
23
+
AllowUsers git
24
24
+
Match Address 192.168.4.0/22,100.64.0.0/10
25
25
+
AllowUsers *
26
26
+
'';
27
27
+
22
28
system.autoUpgrade = {
23
29
enable = true;
24
30
flake = "github:intergrav/flake";