From bd63fcd48f0e3e7327c4d9ec4b2323032db3edd3 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Wed, 8 Jan 2020 11:37:45 +0000 Subject: [PATCH] Add dot-desktop-fuse service --- os/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/os/configuration.nix b/os/configuration.nix index 4762c7e..bb1a2d0 100644 --- a/os/configuration.nix +++ b/os/configuration.nix @@ -44,6 +44,15 @@ in { ''; }; + systemd.user.services."dot-desktop-fuse" = { + serviceConfig = { + ExecStart = "${appvm}/bin/dot-desktop-fuse"; + Restart = "on-failure"; + }; + path = [ "/run/wrappers" ]; + wantedBy = [ "default.target" ]; + }; + systemd.user.services."autoballoon" = { serviceConfig.StartLimitBurst = 64; script = "${appvm}/bin/appvm autoballoon";