nixvimConfig/modules/home/bundles/desktop.nix
2024-07-13 11:38:17 +02:00

27 lines
358 B
Nix

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