summaryrefslogtreecommitdiffstats
path: root/modules/programs/programs.nix
blob: b9a003f6c0c08d6f1d2754e91da4084eb3f0204c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, pkgs, user, ... }:
with lib;
{
    config.home-manager.users.${user} = mkIf (config.xserver.enable) {
        home.packages = with pkgs; [
            libreoffice
            hunspell
            hunspellDicts.en_US

            (pass.withExtensions (exts: [exts.pass-otp ]))
            thefuck
            mpc-cli
            pavucontrol
            qbittorrent
            ffmpeg
            mpv
        ];
    };
}