snowflake/hosts/tsuki/networking.nix
notohh 193f2480d7
Some checks failed
ci/woodpecker/cron/flake-lock-update Pipeline failed
flake.nix: update
license: update

pkgs: remove scls

nix: update inputs and insecure pkgs

tsuki: init gaming file

blocky: update blocklist

pgres: add dbs

home: update themes

programs: init opencomposite

media: remove spotify-player

helix: update theme and scls

tsuki: remove stylix

overlays: set chatterino tag to null
2025-01-12 20:52:09 -05:00

26 lines
473 B
Nix

_: {
networking = {
networkmanager.enable = true;
hostName = "tsuki";
firewall = {
enable = true;
allowedTCPPorts = [
7000 # uxplay
7100 # uxplay
7001 # uxplay
];
allowedUDPPorts = [
7011 # uxplay
6001 # uxplay
6000 # uxplay
];
};
};
environment.etc = {
"resolv.conf".text = ''
nameserver 192.168.1.103
nameserver 9.9.9.9
options edns0
'';
};
}