forked from StevenBlack/hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
57 lines (55 loc) · 2.11 KB
/
flake.nix
File metadata and controls
57 lines (55 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
description = "Unified hosts file with base extensions.";
outputs = { self, nixpkgs, ... }@inputs:
let
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.unix;
nixpkgsFor = forAllSystems (system: import nixpkgs {
inherit system;
});
in
{
nixosModule = { config, ... }:
let
inherit (nixpkgs) lib;
cfg = config.networking.stevenBlackHosts;
alternatesList =
(lib.optional cfg.blockFakenews "fakenews")
++ (lib.optional cfg.blockGambling "gambling")
++ (lib.optional cfg.blockPorn "porn")
++ (lib.optional cfg.blockSocial "social");
alternatesPath = "alternates/" + builtins.concatStringsSep "-" alternatesList + "/";
in
{
options.networking.stevenBlackHosts = {
enable = lib.mkEnableOption "Steven Black's hosts file";
enableIPv6 = lib.mkEnableOption "IPv6 rules" // {
default = config.networking.enableIPv6;
defaultText = lib.literalExpression "config.networking.enableIPv6";
};
blockFakenews = lib.mkEnableOption "fakenews hosts entries";
blockGambling = lib.mkEnableOption "gambling hosts entries";
blockPorn = lib.mkEnableOption "porn hosts entries";
blockSocial = lib.mkEnableOption "social hosts entries";
};
config = lib.mkIf cfg.enable {
networking.extraHosts =
let
orig = builtins.readFile ("${self}/" + (lib.optionalString (alternatesList != []) alternatesPath) + "hosts");
ipv6 = builtins.replaceStrings [ "0.0.0.0" ] [ "::" ] orig;
in
lib.mkAfter (orig + (lib.optionalString cfg.enableIPv6 ("\n" + ipv6)));
};
};
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system}; in
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
python3
python3Packages.flake8
python3Packages.requests
];
};
});
};
}