Files
nixconfig/modules/home/gui/base/default.nix
soraefir 1590a1cf31 fix ui
2026-06-05 01:57:27 +02:00

22 lines
362 B
Nix

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