general updates

This commit is contained in:
Chris Cochrun 2022-09-04 10:52:38 -05:00
parent 19d514e405
commit 1776b30851
10 changed files with 138 additions and 41 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the
@ -241,7 +241,7 @@
services.nextcloud-client = {
enable = true;
# startInBackground = true;
startInBackground = true;
};
services.syncthing.enable = true;
@ -512,7 +512,7 @@
};
Install = {
WantedBy = ["multi-user.target"];
WantedBy = ["graphical-session.target"];
};
};
@ -529,6 +529,16 @@
WantedBy = ["default.target"];
};
};
nextlcoud-client = {
Unit = {
Description = "Nextcloud Client";
After = [ "plasma-workspace.target" ];
# PartOf = [ "plasma-workspace.target" ];
};
# Install = { WantedBy = [ "plasma-workspace.target" ]; };
};
};
}