nixconfig/modules/home/gui/base/default.nix
soraefir 5b43e414b7
All checks were successful
Nix Build / build-nixos (push) Successful in 6m50s
Fix Xwayland, new wifi,...
2024-06-01 12:29:57 +02:00

20 lines
360 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
pavucontrol
keepassxc
nextcloud-client
gramps
];
};
}