mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
1f305c363e
Adds a module to enable managing Remmina, an RDP client, with a Home Manager module, providing a systemd service and mimetype integration that can be disabled if so desired.
74 lines
2 KiB
Nix
74 lines
2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf mkMerge mkEnableOption mkPackageOption mkOption;
|
|
|
|
cfg = config.services.remmina;
|
|
|
|
in {
|
|
meta.maintainers = with lib.maintainers; [ cyntheticfox ];
|
|
|
|
options.services.remmina = {
|
|
enable = mkEnableOption "Remmina";
|
|
|
|
package = mkPackageOption pkgs "remmina" { };
|
|
|
|
addRdpMimeTypeAssoc = mkEnableOption "Remmina RDP file open option" // {
|
|
default = true;
|
|
};
|
|
|
|
systemdService = {
|
|
enable = mkEnableOption "systemd Remmina service" // { default = true; };
|
|
|
|
startupFlags = mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = [ "--icon" ];
|
|
description = ''
|
|
Startup flags documented in the manpage to run at service startup.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
{ home.packages = [ cfg.package ]; }
|
|
|
|
(mkIf cfg.systemdService.enable {
|
|
systemd.user.services.remmina = {
|
|
Unit = {
|
|
Description = "Remmina remote desktop client";
|
|
Documentation = "man:remmina(1)";
|
|
Requires = [ "graphical-session-pre.target" ];
|
|
};
|
|
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${lib.getExe cfg.package} ${
|
|
lib.escapeShellArgs cfg.systemdService.startupFlags
|
|
}";
|
|
Restart = "on-failure";
|
|
};
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
})
|
|
|
|
(mkIf (config.xdg.mimeApps.enable && cfg.addRdpMimeTypeAssoc) {
|
|
xdg.mimeApps.associations.added."application/x-rdp" =
|
|
"org.remmina.Remmina.desktop";
|
|
|
|
xdg.dataFile."mime/packages/application-x-rdp.xml".text = ''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
|
<mime-type type="application/x-rdp">
|
|
<comment>rdp file</comment>
|
|
<icon name="application-x-rdp"/>
|
|
<glob-deleteall/>
|
|
<glob pattern="*.rdp"/>
|
|
</mime-type>
|
|
</mime-info>
|
|
'';
|
|
})
|
|
]);
|
|
}
|