feat: Install VLC
This commit is contained in:
parent
f866b22802
commit
ef9bc9f851
2 changed files with 17 additions and 0 deletions
|
@ -19,6 +19,7 @@ in {
|
||||||
pidgin = enabled;
|
pidgin = enabled;
|
||||||
thunderbird = enabled;
|
thunderbird = enabled;
|
||||||
phpstorm = enabled;
|
phpstorm = enabled;
|
||||||
|
vlc = enabled;
|
||||||
wezterm = enabled;
|
wezterm = enabled;
|
||||||
zathura = enabled;
|
zathura = enabled;
|
||||||
};
|
};
|
||||||
|
|
16
modules/home/programs/gui/vlc/default.nix
Normal file
16
modules/home/programs/gui/vlc/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.marleyos.programs.vlc;
|
||||||
|
in {
|
||||||
|
options.marleyos.programs.vlc.enable = lib.mkEnableOption "vlc";
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
vlc
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue