2008-11-18 10:00:15 -08:00
|
|
|
# Disnix server
|
2009-10-12 09:36:19 -07:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2008-07-06 11:34:19 -07:00
|
|
|
|
|
|
|
let
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
cfg = config.services.disnix;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2009-09-02 03:27:44 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
options = {
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
services.disnix = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable Disnix";
|
|
|
|
};
|
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
###### implementation
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
config = mkIf cfg.enable {
|
2008-07-06 11:34:19 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
environment.systemPackages = [ pkgs.disnix ];
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
services.dbus.enable = true;
|
|
|
|
services.dbus.packages = [ pkgs.disnix ];
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 11:09:34 -07:00
|
|
|
jobs.disnix =
|
2009-10-12 09:36:19 -07:00
|
|
|
{ description = "Disnix server";
|
|
|
|
|
2009-11-06 14:19:17 -08:00
|
|
|
startOn = "started dbus";
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
script =
|
2010-04-01 07:53:17 -07:00
|
|
|
''
|
|
|
|
export PATH=/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin
|
2009-10-12 09:36:19 -07:00
|
|
|
export HOME=/root
|
|
|
|
|
2010-04-01 07:53:17 -07:00
|
|
|
${pkgs.disnix}/bin/disnix-service --activation-modules-dir=${pkgs.disnix_activation_scripts}/libexec/disnix/activation-scripts
|
2009-10-12 09:36:19 -07:00
|
|
|
'';
|
|
|
|
};
|
2008-11-22 17:28:58 -08:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-07-06 11:34:19 -07:00
|
|
|
}
|