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

34 lines
534 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
2019-10-24 02:20:38 +02:00
programs.custom = {
urxvt = {
enable = true;
colorTheme = "light";
};
xterm = {
enable = true;
colorTheme = "light";
};
curlScripts.enable = true;
};
services.urxvtd.enable = true;
}