chore: nf-fmt-nix

This commit is contained in:
arcnmx 2024-06-23 11:48:55 -07:00
parent e4bbddb004
commit 32ff0a8e0c
7 changed files with 152 additions and 138 deletions

View file

@ -17,10 +17,10 @@ in {
};
systemd.services = mkIf cfg.enable {
adb = {
environment.ADB_TRACE = mkDefault (toString [ "adb" ]);
environment.ADB_TRACE = mkDefault (toString ["adb"]);
};
};
networking.firewall.interfaces.lan = mkIf (cfg.enable && cfg.settings.a or false == true) {
allowedTCPPorts = [ cfg.port ];
allowedTCPPorts = [cfg.port];
};
}