This commit is contained in:
2024-05-31 11:59:23 -06:00
parent f8e8a8c485
commit 38cc6b48cf
10 changed files with 177 additions and 506 deletions

View File

@@ -1,7 +1,10 @@
{ pkgs, lib, ... }:
{ pkgs, ... }:
{
home.packages = with pkgs; [ pinentry_mac terminal-notifier ];
home.packages = with pkgs; [
pinentry_mac
terminal-notifier
];
home.file.gpg-agent = {
target = ".gnupg/gpg-agent.conf";
@@ -11,20 +14,5 @@
'';
};
# 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 ];
}