27 lines
356 B
Nix
27 lines
356 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
|
|
# };
|
|
}
|