soraefir 5d68b291ba
All checks were successful
Nix Build / build-nixos (push) Successful in 26m31s
Fix & Update versions
2024-11-21 01:21:48 +01:00

21 lines
381 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
];
};
}