Initial commit
This commit is contained in:
commit
10abd93889
20 changed files with 395 additions and 0 deletions
15
hosts/netbox/configuration.nix
Normal file
15
hosts/netbox/configuration.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./tor.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
hostName = "tor-relay";
|
||||
firewall.enable = false;
|
||||
};
|
||||
|
||||
system.stateVersion = "23.05";
|
||||
}
|
10
hosts/netbox/netbox.nix
Normal file
10
hosts/netbox/netbox.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.netox = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue