Compare commits
2 commits
8884aaf3c2
...
e8491afa12
Author | SHA1 | Date | |
---|---|---|---|
e8491afa12 | |||
4a43725e99 |
2 changed files with 21 additions and 4 deletions
|
@ -216,6 +216,11 @@
|
||||||
name = "JetBrains Mono Regular";
|
name = "JetBrains Mono Regular";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
cursor = {
|
||||||
|
package = pkgs.breeze-qt5;
|
||||||
|
name = "breeze_cursors";
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
|
|
|
@ -79,10 +79,22 @@
|
||||||
tray.enable = true;
|
tray.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.targets.tray = {
|
systemd.user = {
|
||||||
Unit = {
|
services.gc = {
|
||||||
Description = "System Tray";
|
Service = {
|
||||||
Requires = [ "graphical-session-pre.target" ];
|
Exec = "nix-collect-garbage --delete-older-than 30d";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
timers.gc = {
|
||||||
|
Timer = {
|
||||||
|
OnCalendar = "weekly";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
targets.tray = {
|
||||||
|
Unit = {
|
||||||
|
Description = "System Tray";
|
||||||
|
Requires = [ "graphical-session-pre.target" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue