test
This commit is contained in:
parent
a2a75832f4
commit
8d3e013cfd
2 changed files with 3 additions and 2 deletions
|
@ -57,7 +57,7 @@
|
|||
libx = import ./lib { inherit self inputs outputs stateVersion hmStateVersion; };
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
osaka-linode-01 = libx.mkHost { hostname = "osaka-linode-01"; type = "small"; };
|
||||
osaka-linode-01 = libx.mkHost { hostname = "osaka-linode-01"; };
|
||||
framework-server = libx.mkHost { hostname = "framework-server"; };
|
||||
nuc-server = libx.mkHost { hostname = "nuc-server"; };
|
||||
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; desktop = "hyprland"; gpu = "nvidia"; theme = "tokyo-night"; };
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
networking = {
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [
|
||||
80 # HTTP
|
||||
443 # HTTPS
|
||||
|
@ -18,7 +19,7 @@
|
|||
3478 # Headscale DERP (udp)
|
||||
10000 # Jitsi Meet (udp)
|
||||
];
|
||||
};
|
||||
};d
|
||||
|
||||
nftables = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue