summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/common.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/common.nix b/lib/common.nix
index e383dc4..f84c5e8 100644
--- a/lib/common.nix
+++ b/lib/common.nix
@@ -30,7 +30,10 @@ in
target = ".editorconfig";
};
hledger = {
- source = ./hledger.journal;
+ source = builtins.toFile "hledger.journal" ''
+ !include ${homedir}/org/fund/accounts.journal
+ !include ${homedir}/org/fund/2019.10.journal
+ '';
target = ".hledger.journal";
};
pythonrc = {
@@ -113,6 +116,12 @@ in
identityFile = [ "${homedir}/.ssh/id_rsa" ];
identitiesOnly = true;
};
+ "git.platonic.systems" = {
+ hostname = "git.platonic.systems";
+ user = "git";
+ identityFile = [ "${homedir}/.ssh/platonic.systems" ];
+ identitiesOnly = true;
+ };
};
};