nixvimConfig/modules/home/bundles/desktop.nix
2024-05-21 21:28:32 +02:00

24 lines
317 B
Nix

{
pkgs,
config,
lib,
inputs,
...
}: {
imports = [];
home.packages = with pkgs; [
thunderbird
signal-desktop
keepassxc
];
programs.firefox = {
enable = true;
};
# TODO: fill this out (and move it in a service, probably)
# services.syncthing = {
# enable = true
# };
}