configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: idk

+7 -1
+7 -1
hosts/bluepill/modules/tangled.nix
··· 1 - {...}: { 2 services = { 3 tangled = { 4 knot = { ··· 16 owner = "did:plc:3xpaniu6rs7fygzthgmtuv7c"; 17 }; 18 }; 19 }; 20 }; 21 }
··· 1 + {lib, ...}: { 2 services = { 3 tangled = { 4 knot = { ··· 16 owner = "did:plc:3xpaniu6rs7fygzthgmtuv7c"; 17 }; 18 }; 19 + }; 20 + openssh = { 21 + enable = lib.mkForce true; 22 + ports = [2222]; 23 + settings.AllowUsers = ["git"]; 24 + settings.AllowGroups = ["git"]; 25 }; 26 }; 27 }