nixos-config/nixos/system/desktop/default.nix
2024-03-03 09:59:17 +01:00

29 lines
510 B
Nix

{ config, pkgs, lib, ... }: {
imports = [
../all
];
backup.dirs = [
"${config.users.users.mainUser.home}/.config/noti"
"${config.users.users.mainUser.home}/.password-store"
"${config.users.users.mainUser.home}/.task"
"${config.users.users.mainUser.home}/.vit"
];
#programs.custom = {
# urxvt = {
# enable = true;
# colorTheme = "light";
# };
# xterm = {
# enable = true;
# colorTheme = "light";
# };
#};
services.urxvtd.enable = true;
}