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