mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
10 lines
173 B
Nix
10 lines
173 B
Nix
{ inputs, ... }:
|
|
|
|
let blocklist = builtins.readFile "${inputs.blocklist-hosts}/alternates/gambling-porn/hosts";
|
|
in
|
|
{
|
|
networking.extraHosts = ''
|
|
"${blocklist}"
|
|
'';
|
|
}
|