nix/modules/stuff/other-desktop-programs.nix

25 lines
522 B
Nix
Raw Normal View History

2024-08-01 21:22:47 +02:00
{ lib, pkgs, config, ...}: let
inherit (lib) mkIf mkEnableOption mkOption;
cfg = config.chuj.stuff.other-desktop-programs;
user = config.chuj.system.user;
in {
options.chuj.stuff.other-desktop-programs = {
enable = mkEnableOption "other-desktop-programs";
};
config = mkIf cfg.enable {
home-manager.users.${user}.home.packages = with pkgs; [
pavucontrol
2024-08-29 23:13:04 +02:00
# element-desktop
schildichat-desktop
2024-08-01 21:22:47 +02:00
discord
libreoffice-qt
gimp
vlc
qimgv
];
};
2024-08-29 23:13:04 +02:00
}