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

40 lines
665 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
2023-12-15 08:31:31 +01:00
#./packages.nix
2023-12-17 19:17:59 +01:00
#./yubikey.nix
2019-12-20 05:54:26 +01:00
];
2019-10-24 02:20:38 +02:00
#components.network.sshd.onlyTincAccess = lib.mkDefault true;
2022-10-13 10:19:23 +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;
citate.enable = true;
};
services.urxvtd.enable = true;
}