flake/nixos/flake-modules/hosts.nix
2023-11-17 13:38:25 +08:00

11 lines
216 B
Nix

{inputs, ...}: {
imports = [inputs.hosts.nixosModule];
networking.stevenBlackHosts = {
enable = true;
blockFakenews = true;
blockGambling = true;
blockPorn = true;
blockSocial = true;
};
}