1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/services/citrix.nix
2022-10-25 09:53:40 +02:00

27 lines
388 B
Nix

{ pkgs, lib, config, options, fetchurl, ... }:
with lib;
let
cfg = config.personal.services.citrix;
in
{
options = {
personal = {
services = {
citrix = {
enable = mkEnableOption "Citrix";
};
};
};
};
config = mkIf cfg.enable {
environment = {
systemPackages = with pkgs; [
citrix_workspace
];
};
};
}