fix(theme): tmux them

This commit is contained in:
Barrett Ruth 2026-02-17 00:40:07 -05:00
parent 5e5ba5a5da
commit 9bb85991e7
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 8 additions and 18 deletions

View file

@ -71,18 +71,6 @@
Install.WantedBy = [ "timers.target" ];
};
systemd.user.services.theme-apply = lib.mkIf hostConfig.isLinux {
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 = lib.mkIf hostConfig.isLinux {
Unit.Description = "Clear clipboard history on session end";
Service = {