25 lines
317 B
Nix
25 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
|
||
|
|
# };
|
||
|
|
}
|