nixpkgs/nixos/modules/services/misc/ihaskell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.7 KiB
Nix
Raw Normal View History

2015-04-10 22:09:31 +00:00
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.services.ihaskell;
ihaskell = pkgs.ihaskell.override {
packages = cfg.extraPackages;
2015-04-10 22:09:31 +00:00
};
in
{
options = {
services.ihaskell = {
enable = mkOption {
type = types.bool;
2015-04-10 22:09:31 +00:00
default = false;
description = lib.mdDoc "Autostart an IHaskell notebook service.";
2015-04-10 22:09:31 +00:00
};
extraPackages = mkOption {
type = types.functionTo (types.listOf types.package);
default = haskellPackages: [];
defaultText = literalExpression "haskellPackages: []";
example = literalExpression ''
2015-04-10 22:09:31 +00:00
haskellPackages: [
haskellPackages.wreq
haskellPackages.lens
]
'';
description = lib.mdDoc ''
2015-04-10 22:09:31 +00:00
Extra packages available to ghc when running ihaskell. The
value must be a function which receives the attrset defined
in {var}`haskellPackages` as the sole argument.
2015-04-10 22:09:31 +00:00
'';
};
};
};
config = mkIf cfg.enable {
users.users.ihaskell = {
group = config.users.groups.ihaskell.name;
2015-04-10 22:09:31 +00:00
description = "IHaskell user";
home = "/var/lib/ihaskell";
createHome = true;
uid = config.ids.uids.ihaskell;
};
users.groups.ihaskell.gid = config.ids.gids.ihaskell;
2015-04-10 22:09:31 +00:00
systemd.services.ihaskell = {
description = "IHaskell notebook instance";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
User = config.users.users.ihaskell.name;
Group = config.users.groups.ihaskell.name;
ExecStart = "${pkgs.runtimeShell} -c \"cd $HOME;${ihaskell}/bin/ihaskell-notebook\"";
2015-04-10 22:09:31 +00:00
};
};
};
}