feat(home): Vesktop
This commit is contained in:
parent
bd7fda3856
commit
8e49eb2203
2 changed files with 21 additions and 0 deletions
|
@ -64,6 +64,7 @@ in
|
|||
starship = enabled;
|
||||
systemctl = enabled;
|
||||
tmux = enabled;
|
||||
vesktop = enabled;
|
||||
wezterm = enabled;
|
||||
wget = enabled;
|
||||
zathura = enabled;
|
||||
|
|
20
modules/home/programs/vesktop/default.nix
Normal file
20
modules/home/programs/vesktop/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue