about summary refs log tree commit diff
path: root/home/vlc/default.nix
blob: c06994b919679e4d49a1330ea4d56390c4359b77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, pkgs, ... }:
let cfg = config.my.home.vlc;
in
{
  options.my.home.vlc = with lib; {
    enable = mkEnableOption "vlc configuration";
  };

  config = lib.mkIf cfg.enable { home.packages = with pkgs; [ vlc ]; };
}