fix: set theme on login

This commit is contained in:
Barrett Ruth 2026-02-13 14:10:42 -05:00
parent 035ad533a6
commit e39b64bccd
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -52,6 +52,18 @@
Install.WantedBy = [ "timers.target" ];
};
systemd.user.services.theme-apply = {
Unit = {
Description = "Apply theme on login";
After = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
ExecStart = "${pkgs.bash}/bin/bash -lc '${config.home.homeDirectory}/.config/nix/scripts/theme ${config.theme}'";
};
Install.WantedBy = [ "graphical-session.target" ];
};
systemd.user.services.cliphist-wipe = {
Unit.Description = "Clear clipboard history on session end";
Service = {