All my system configs and packages in one repo
at main 38 lines 726 B view raw
1{ 2 self, 3 inputs, 4 ... 5}: 6{ 7 flake.deploy.nodes = { 8 focaccia = { 9 sshOpts = [ 10 "-p" 11 "42069" 12 ]; 13 hostname = "focaccia.pluie.me"; 14 profiles = { 15 system = { 16 path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.focaccia; 17 user = "root"; 18 sshUser = "root"; 19 }; 20 }; 21 }; 22 23 brioche = { 24 # sshOpts = [ 25 # "-p" 26 # "22" 27 # ]; 28 hostname = "brioche.pluie.me"; 29 profiles = { 30 system = { 31 path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.brioche; 32 user = "root"; 33 sshUser = "root"; 34 }; 35 }; 36 }; 37 }; 38}