Compare commits

..

2 commits

Author SHA1 Message Date
e8491afa12 Home-manager auto-gc 2024-05-27 22:01:34 -04:00
4a43725e99 Stylix 2024-05-27 21:44:40 -04:00
2 changed files with 21 additions and 4 deletions

View file

@ -216,6 +216,11 @@
name = "JetBrains Mono Regular";
};
};
cursor = {
package = pkgs.breeze-qt5;
name = "breeze_cursors";
size = 24;
};
};
system.stateVersion = "23.11"; # Did you read the comment?

View file

@ -79,12 +79,24 @@
tray.enable = true;
};
systemd.user.targets.tray = {
systemd.user = {
services.gc = {
Service = {
Exec = "nix-collect-garbage --delete-older-than 30d";
};
};
timers.gc = {
Timer = {
OnCalendar = "weekly";
};
};
targets.tray = {
Unit = {
Description = "System Tray";
Requires = [ "graphical-session-pre.target" ];
};
};
};
nixpkgs.config = {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "discord" ];