marleyos/modules/home/programs/vesktop/default.nix
2024-11-23 15:51:45 -08:00

20 lines
287 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.programs.vesktop;
in
{
options.marleyos.programs.vesktop.enable = mkEnableOption "vesktop";
config = mkIf cfg.enable {
home.packages = with pkgs; [
vesktop
];
};
}