This commit is contained in:
js0ny 2025-12-06 01:51:10 +00:00
parent 4dcea3a32e
commit d82799ad46
3 changed files with 17 additions and 0 deletions

View file

@ -9,6 +9,7 @@
# core config and packages
../../modules/nixos
../../modules/nixos/core/nix-ld.nix
../../modules/nixos/core/nftables.nix
# this is a laptop
../../modules/nixos/desktop

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
networking.nftables = {
enable = true;
};
networking.firewall.backend = "nftables";
environment.systemPackages = with pkgs; [
iptables-nftables-compat
];
}

View file

@ -13,6 +13,12 @@
nur.repos.ataraxiasjel.waydroid-script
waydroid-helper
];
networking = {
firewall.trustedInterfaces = ["waydroid0"];
nat.enable = true;
};
systemd = {
packages = [pkgs.waydroid-helper];
services.waydroid-mount = {