system/hosts/home/configuration.nix

35 lines
874 B
Nix
Raw 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-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;
}