feat(home): Vesktop

This commit is contained in:
punkfairie 2024-11-23 15:51:45 -08:00
parent bd7fda3856
commit 8e49eb2203
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
2 changed files with 21 additions and 0 deletions

View file

@ -64,6 +64,7 @@ in
starship = enabled;
systemctl = enabled;
tmux = enabled;
vesktop = enabled;
wezterm = enabled;
wget = enabled;
zathura = enabled;

View file

@ -0,0 +1,20 @@
{
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
];
};
}