system/hosts/home/configuration.nix

64 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2024-04-16 02:51:46 +03:00
{ globalData, ... }:
{
imports = [
./hardware-configuration
./configs
./users
];
2024-05-20 18:47:21 +03:00
local.yubikey.enable = true;
2024-05-22 22:12:33 +03:00
services.radicale = {
enable = true;
settings = {
auth = {
# htpasswd -B -c /etc/radicale/users
type = "htpasswd";
htpasswd_filename = "/etc/radicale/users";
htpasswd_encryption = "bcrypt";
};
};
rights = {
root = {
user = ".+";
collection = "";
permissions = "R";
};
principal = {
user = ".+";
collection = "{user}";
permissions = "RW";
};
calendars = {
user = ".+";
collection = "{user}/[^/]+";
permissions = "rw";
};
};
};
2024-04-16 02:51:46 +03:00
################################################################################
# Programs
################################################################################
local.programs.browsers.tor-browser = {
enable = true;
container = {
enable = true;
externalInterface = "wg0";
sshAuthorizedKeys = globalData.publicKeys.users.jan;
};
};
################################################################################
# Services
################################################################################
local.services.i2pd.enable = true;
local.services.octoprint.enable = true;
virtualisation.docker.enable = true;
# Torrent client
services.transmission.enable = true;
}