feat: vlc
This commit is contained in:
parent
26a49acbc1
commit
d244b5d2a5
3 changed files with 3 additions and 1 deletions
|
@ -65,6 +65,7 @@ in {
|
|||
superfile = enabled;
|
||||
tea = enabled;
|
||||
thunderbird = enabled;
|
||||
vlc = enabled;
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
./tea.nix
|
||||
./thunderbird.nix
|
||||
./tmux.nix
|
||||
./vlc.nix
|
||||
./waybar.nix
|
||||
./wget.nix
|
||||
./zoxide.nix
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
in {
|
||||
options.marleyos.programs.vlc.enable = lib.mkEnableOption "vlc";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
|
||||
home.packages = with pkgs; [
|
||||
vlc
|
||||
];
|
Loading…
Reference in a new issue