You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
632 B
Nix
31 lines
632 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ pinentry_mac terminal-notifier ];
|
|
|
|
home.file.gpg-agent = {
|
|
target = ".gnupg/gpg-agent.conf";
|
|
text = ''
|
|
default-cache-ttl 86400
|
|
max-cache-ttl 86400
|
|
'';
|
|
};
|
|
|
|
# home.file.gitignore = {
|
|
# target = ".gitignore";
|
|
# text = ''Library'';
|
|
# };
|
|
|
|
launchd.agents.duplicati = {
|
|
enable = true;
|
|
config = {
|
|
ProgramArguments = [ "/Users/dustinswan/.nix-profile/bin/duplicati-server" ];
|
|
RunAtLoad = true;
|
|
LaunchOnlyOnce = true;
|
|
KeepAlive = true;
|
|
};
|
|
};
|
|
|
|
imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ];
|
|
}
|