python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / ihaskell.nix
blob4782053c4fb82c92e33723fa8a7c93e48b39f930
1 { pkgs, lib, config, ... }:
3 with lib;
5 let
7   cfg = config.services.ihaskell;
8   ihaskell = pkgs.ihaskell.override {
9     packages = cfg.extraPackages;
10   };
15   options = {
16     services.ihaskell = {
17       enable = mkOption {
18         type = types.bool;
19         default = false;
20         description = lib.mdDoc "Autostart an IHaskell notebook service.";
21       };
23       extraPackages = mkOption {
24         type = types.functionTo (types.listOf types.package);
25         default = haskellPackages: [];
26         defaultText = literalExpression "haskellPackages: []";
27         example = literalExpression ''
28           haskellPackages: [
29             haskellPackages.wreq
30             haskellPackages.lens
31           ]
32         '';
33         description = lib.mdDoc ''
34           Extra packages available to ghc when running ihaskell. The
35           value must be a function which receives the attrset defined
36           in {var}`haskellPackages` as the sole argument.
37         '';
38       };
39     };
40   };
42   config = mkIf cfg.enable {
44     users.users.ihaskell = {
45       group = config.users.groups.ihaskell.name;
46       description = "IHaskell user";
47       home = "/var/lib/ihaskell";
48       createHome = true;
49       uid = config.ids.uids.ihaskell;
50     };
52     users.groups.ihaskell.gid = config.ids.gids.ihaskell;
54     systemd.services.ihaskell = {
55       description = "IHaskell notebook instance";
56       wantedBy = [ "multi-user.target" ];
57       after = [ "network.target" ];
58       serviceConfig = {
59         User = config.users.users.ihaskell.name;
60         Group = config.users.groups.ihaskell.name;
61         ExecStart = "${pkgs.runtimeShell} -c \"cd $HOME;${ihaskell}/bin/ihaskell-notebook\"";
62       };
63     };
64   };