1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Don't repeat IP addresses

This commit is contained in:
RGBCube 2024-04-24 11:31:47 +03:00
parent 90a6c77000
commit 9c9c945b20
No known key found for this signature in database
5 changed files with 21 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }: with lib; merge
{ self, lib, pkgs, ... }: with lib; merge
(desktopSystemPackages (with pkgs; [
mosh
@ -20,13 +20,13 @@
};
cube = {
hostname = "5.255.78.70";
hostname = self.cube.networking.ipv4;
user = "rgb";
port = 2222;
};
disk = {
hostname = "23.164.232.40";
hostname = self.disk.networking.ipv4;
user = "floppy";
port = 2222;
};