diff options
Diffstat (limited to 'users/wpcarro/tools/url-blocker/default.nix')
-rw-r--r-- | users/wpcarro/tools/url-blocker/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/users/wpcarro/tools/url-blocker/default.nix b/users/wpcarro/tools/url-blocker/default.nix new file mode 100644 index 000000000000..943644e5f542 --- /dev/null +++ b/users/wpcarro/tools/url-blocker/default.nix @@ -0,0 +1,33 @@ +{ pkgs, ... }: + +let + ghc = pkgs.haskellPackages.ghcWithPackages (hpkgs: [ + hpkgs.time + hpkgs.aeson + hpkgs.either + ]); + + # This is the systemd service unit + service = pkgs.stdenv.mkDerivation { + name = "url-blocker"; + src = builtins.path { path = ./.; name = "url-blocker"; }; + buildPhase = '' + ${ghc}/bin/ghc Main.hs + ''; + installPhase = '' + mv ./Main $out + ''; + }; + + # This is the systemd timer unit. + # Run once every minute. + # Give root privilege. + systemdUnit = { + systemd = { + timers.simple-timer = { + wantedBy = [ "timers.target" ]; + partOf = []; + }; + }; + }; +in null |