32 lines
780 B
Nix
32 lines
780 B
Nix
|
{ globalData, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration
|
||
|
./configs
|
||
|
./users
|
||
|
];
|
||
|
|
||
|
################################################################################
|
||
|
# Programs
|
||
|
################################################################################
|
||
|
local.programs.browsers.tor-browser = {
|
||
|
enable = true;
|
||
|
container = {
|
||
|
enable = true;
|
||
|
externalInterface = "wg0";
|
||
|
sshAuthorizedKeys = globalData.publicKeys.users.jan;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
################################################################################
|
||
|
# Services
|
||
|
################################################################################
|
||
|
|
||
|
# Enable the Docker
|
||
|
virtualisation.docker.enable = true;
|
||
|
|
||
|
# Torrent
|
||
|
# services.transmission.enable = true;
|
||
|
}
|