nixvimConfig/modules/home/bundles/desktop.nix

25 lines
317 B
Nix
Raw Normal View History

2024-03-27 23:45:23 +01:00
{
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
# };
}