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

21 lines
381 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-11-21 01:21:48 +01:00
discord-canary
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
];
};
}