summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-01-26 15:00:43 -0500
committerBen Sima <ben@bsima.me>2022-01-26 15:00:43 -0500
commitdbe47f1ba75ca16463368157363b329e5ae3e496 (patch)
treed4b9fb6972e5d6fbedd927c18083cde3ea394083
parenta70ca7cb664184b85a9dd7b9f33905d778349321 (diff)
disable gpg-refresh - doesnt work
-rw-r--r--lib/linux.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/linux.nix b/lib/linux.nix
index 5787d62..c98124f 100644
--- a/lib/linux.nix
+++ b/lib/linux.nix
@@ -431,16 +431,16 @@ in
systemd.user = {
services = {
- "gpg-refresh".Service.ExecStart = "${pkgs.gnupg}/bin/gpg --refresh";
+ #"gpg-refresh".Service.ExecStart = "${pkgs.gnupg}/bin/gpg --refresh";
# make it the same as 'systemctl show mpd | grep LimitMEMLOCK"
# might not be necessary?
#mpd.Service.LimitMEMLOCK = "2085444096";
};
timers = {
- "gpg-refresh" = {
- Install.WantedBy = ["timers.target"];
- Timer.OnCalendar = "daily";
- };
+ #"gpg-refresh" = {
+ # Install.WantedBy = ["timers.target"];
+ # Timer.OnCalendar = "daily";
+ #};
};
};
}