This commit is contained in:
catvayor 2024-12-06 17:36:37 +01:00
parent 015f66b649
commit b56a4d57d1
Signed by: lbailly
GPG key ID: CE3E645251AC63F3
3 changed files with 8 additions and 2 deletions

View file

@ -10,7 +10,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
users.catvayor users.catvayor
./router.nix # ./router.nix
]; ];
fileSystems."/tmp" = { fileSystems."/tmp" = {

View file

@ -85,10 +85,15 @@
hostname = "fd26:baf9:d250:8000::ffff"; hostname = "fd26:baf9:d250:8000::ffff";
proxyJump = "vault01.dgnum"; proxyJump = "vault01.dgnum";
}; };
"krz01.dgnum" = {
"krz01.lab" = {
user = "root"; user = "root";
hostname = "129.199.146.21"; hostname = "129.199.146.21";
}; };
"router02.lab" = {
user = "root";
hostname = "129.199.146.230";
};
}; };
}; };
} }

View file

@ -20,6 +20,7 @@
packages = with pkgs; [ packages = with pkgs; [
tree tree
nixfmt-rfc-style nixfmt-rfc-style
ghq
]; ];
}; };