summaryrefslogblamecommitdiffstats
path: root/modules/programs/programs.nix
blob: b9d46c144a0ba1ffee753f101c1337b83b9143e7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                      
{ 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
        ];
    };
}