profiles/common: Moved to petabyte.nftables

This commit is contained in:
kat witch 2021-04-26 17:11:11 +01:00
parent f659dd5ed8
commit ffa8dcc8af
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 7 additions and 0 deletions

View file

@ -5,6 +5,7 @@ in {
imports = [
./deploy
./tf-glue
(sources.pbb-nixfiles + "/modules/nftables")
(sources.tf-nix + "/modules/nixos/secrets.nix")
(sources.tf-nix + "/modules/nixos/secrets-users.nix")
hexchen.modules.hexnet

View file

@ -3,6 +3,7 @@
{
imports = [
./system.nix
./net.nix
./access.nix
./locale.nix
./nix.nix

View file

@ -0,0 +1,5 @@
{ config, lib, ... }:
{
petabyte.nftables.enable = lib.mkDefault true;
}