nixos-config/nixos/system/desktop/default.nix

30 lines
510 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, pkgs, lib, ... }: {
2019-10-24 02:20:38 +02:00
imports = [
2021-09-25 11:07:09 +02:00
../all
2019-12-20 05:54:26 +01:00
];
2019-10-24 02:20:38 +02:00
2021-10-20 08:47:59 +02:00
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"
];
2020-09-04 00:49:35 +02:00
2024-03-03 09:59:17 +01:00
#programs.custom = {
# urxvt = {
# enable = true;
# colorTheme = "light";
# };
# xterm = {
# enable = true;
# colorTheme = "light";
# };
#};
2019-10-24 02:20:38 +02:00
services.urxvtd.enable = true;
}