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

21 lines
374 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ lib, config, pkgs, ... }: {
2024-04-14 07:57:07 +02:00
config = lib.mkIf (config.syscfg.make.gui) {
2023-11-04 02:28:27 +01:00
services.nextcloud-client.enable = true;
home.packages = with pkgs; [
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
xfce.tumbler
telegram-desktop
2024-09-23 19:03:47 +02:00
discord
2023-11-04 02:28:27 +01:00
pavucontrol
keepassxc
2024-06-01 11:18:10 +02:00
nextcloud-client
2023-11-04 02:28:27 +01:00
gramps
];
};
}