nixpkgs/nixos/modules/programs/cdemu.nix

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

76 lines
1.9 KiB
Nix
Raw Normal View History

2015-02-10 01:27:04 +00:00
{ config, lib, pkgs, ... }:
with lib;
2015-02-10 10:52:46 +00:00
let cfg = config.programs.cdemu;
2015-02-10 01:27:04 +00:00
in {
options = {
2015-02-10 10:52:46 +00:00
programs.cdemu = {
2015-02-10 01:27:04 +00:00
enable = mkOption {
type = types.bool;
2015-02-10 01:27:04 +00:00
default = false;
description = ''
{command}`cdemu` for members of
{option}`programs.cdemu.group`.
'';
2015-02-10 01:27:04 +00:00
};
group = mkOption {
2021-02-05 09:39:25 +00:00
type = types.str;
2015-02-10 01:27:04 +00:00
default = "cdrom";
description = ''
Group that users must be in to use {command}`cdemu`.
'';
2015-02-10 01:27:04 +00:00
};
gui = mkOption {
2021-02-05 09:39:25 +00:00
type = types.bool;
2015-02-10 01:27:04 +00:00
default = true;
description = ''
Whether to install the {command}`cdemu` GUI (gCDEmu).
'';
2015-02-10 01:27:04 +00:00
};
image-analyzer = mkOption {
2021-02-05 09:39:25 +00:00
type = types.bool;
2015-02-10 01:27:04 +00:00
default = true;
description = ''
Whether to install the image analyzer.
'';
2015-02-10 01:27:04 +00:00
};
};
};
config = mkIf cfg.enable {
2015-02-10 10:49:32 +00:00
2015-02-10 01:27:04 +00:00
boot = {
2016-01-07 16:15:01 +00:00
extraModulePackages = [ config.boot.kernelPackages.vhba ];
2015-02-10 01:27:04 +00:00
kernelModules = [ "vhba" ];
};
2015-02-10 10:49:32 +00:00
2015-02-10 01:27:04 +00:00
services = {
udev.extraRules = ''
KERNEL=="vhba_ctl", MODE="0660", OWNER="root", GROUP="${cfg.group}"
'';
dbus.packages = [ pkgs.cdemu-daemon ];
};
2015-02-10 10:49:32 +00:00
users.groups.${config.programs.cdemu.group} = {};
# Systemd User service
# manually adapted from example in source package:
# https://sourceforge.net/p/cdemu/code/ci/master/tree/cdemu-daemon/service-example/cdemu-daemon.service
systemd.user.services.cdemu-daemon.description = "CDEmu daemon";
systemd.user.services.cdemu-daemon.serviceConfig = {
Type = "dbus";
BusName = "net.sf.cdemu.CDEmuDaemon";
ExecStart = "${pkgs.cdemu-daemon}/bin/cdemu-daemon --config-file \"%h/.config/cdemu-daemon\"";
Restart = "no";
};
2015-02-10 01:27:04 +00:00
environment.systemPackages =
[ pkgs.cdemu-daemon pkgs.cdemu-client ]
++ optional cfg.gui pkgs.gcdemu
++ optional cfg.image-analyzer pkgs.image-analyzer;
};
2015-02-10 10:49:32 +00:00
2015-02-10 01:27:04 +00:00
}