nixpkgs/home/systemd.nix
Daniel Siepmann 9f69e90fb4
Replace nextcloud client with rclone
rclone is more flexible regarding storages.
nextcloud didn't play with keepass providing keyring.

rclone does not auto sync, I need to find a proper way to keep files in
sync without manuall calling commands …
2022-10-10 12:46:57 +02:00

15 lines
403 B
Nix

{ config, pkgs }:
{
services = {
batteryicon = import ./services/batteryicon.nix {
inherit pkgs;
};
};
tmpfiles.rules = [
"L ${config.home.homeDirectory}/.themes - - - - ${config.home.profileDirectory}/share/themes"
"L ${config.home.homeDirectory}/.icons/${config.gtk.iconTheme.name} - - - - ${config.home.profileDirectory}/share/icons/${config.gtk.iconTheme.name}"
];
}