1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-06-08 10:26:05 +02:00
github.com-tboerger-nixos-c.../shared/programs/citrix/default.nix

27 lines
378 B
Nix

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