13 lines
220 B
Nix
13 lines
220 B
Nix
|
{ inputs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ inputs.hosts.nixosModule ];
|
||
|
|
||
|
networking.stevenBlackHosts = {
|
||
|
enable = true;
|
||
|
blockFakenews = true;
|
||
|
blockGambling = true;
|
||
|
blockPorn = true;
|
||
|
blockSocial = true;
|
||
|
};
|
||
|
}
|