nixvimConfig/modules/home/bundles/desktop.nix

31 lines
393 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
2024-07-12 15:21:42 +02:00
2024-07-18 17:57:22 +02:00
ungoogled-chromium
2024-07-13 11:38:17 +02:00
# logseq
2024-08-15 16:47:50 +02:00
devour
2024-03-27 23:45:23 +01:00
];
programs.firefox = {
2024-07-03 00:38:20 +02:00
enable = true;
2024-07-08 12:36:39 +02:00
package = pkgs.firefox;
2024-03-27 23:45:23 +01:00
};
# TODO: fill this out (and move it in a service, probably)
# services.syncthing = {
# enable = true
# };
}