nixconfig/modules/home/gui/base/default.nix

19 lines
338 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.homecfg.make.gui) {
services.nextcloud-client.enable = true;
home.packages = with pkgs; [
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
xfce.tumbler
telegram-desktop
pavucontrol
keepassxc
gramps
];
};
}