blob: 6e68c52165f67182486f276412174134e9aea9aa (
plain) (
tree)
|
|
{ config, lib, pkgs, ... }:
{
imports = [
./browser.nix
./emacs.nix
./gtk.nix
./media
./scanner-printer
./syncthing.nix
./terminal.nix
./trust
./wm
./xdg.nix
];
home.packages = [
pkgs.easyeffects
pkgs.gnome.seahorse
pkgs.gnome3.eog
pkgs.gnome3.evince
pkgs.pcmanfm
pkgs.transmission-remote-gtk
pkgs.xdg-utils
];
home = {
sessionVariables = {
TERMINAL = [ "alacritty" ];
TERM = [ "xterm-256color" ];
};
};
systemd.user.tmpfiles.rules = [
# Delete files that are 90 days old
"d %h/.cache - - - amAM:90d -"
"x %h/.cache/.nobackup - - - - -"
# Delete files that are 1 year old
"d %h/downloads - - - amAM:365d -"
"x %h/downloads/.nobackup - - - - -"
];
}
|