feat: conky is eating my life

This commit is contained in:
Kat Inskip 2025-03-18 18:32:41 -07:00
parent b7c510de28
commit 34bc9ae04e
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
15 changed files with 1830 additions and 98 deletions

View file

@ -0,0 +1,29 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [
jq
conky
];
xdg.configFile.conky = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink ./.;
};
systemd.user.services.conky = {
Unit = {
Description = "Conky - Lightweight system monitor";
After = [ "graphical-session.target" ];
X-Restart-Triggers = [
./conky.conf
];
};
Service = {
Restart = "always";
RestartSec = "3";
ExecStart = toString ([ "${pkgs.conky}/bin/conky"]);
};
Install.WantedBy = [ "graphical-session.target" ];
};
}