temp fix for kbfs

This commit is contained in:
Noah Masur 2022-04-24 13:30:01 -04:00
parent e73b8be0cd
commit 23d178b2a2

View File

@ -207,6 +207,17 @@
owner = "root";
group = "wheel";
};
# Required while kbfs service doesn't work automatically
systemd.user.services.kbfsfuse = {
description = "Keybase File System - KBFS";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkgs.kbfs}/bin/kbfsfuse";
Restart = "on-abnormal";
Environment = [ "PATH=/run/wrappers/bin/:$PATH" ];
};
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.