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

19 lines
337 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
pavucontrol
keepassxc
gramps
];
};
}