Files
nixconfig/modules/home/gui/base/default.nix
2025-06-08 15:34:49 +02:00

23 lines
412 B
Nix

{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.syscfg.make.gui) {
services.nextcloud-client.enable = true;
home.packages = with pkgs; [
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
xfce.tumbler
telegram-desktop
discord-canary
pavucontrol
keepassxc
nextcloud-client
gramps
sweethome3d.application
];
};
}