aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/vlc.nix
blob: 77ffb84759735ee40ce4da3bdfccfab16026604b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  flake.modules.homeManager.vlc =
    {
      pkgs,
      ...
    }:
    {
      home.packages = with pkgs; [
        vlc
      ];
    };
}