system/hosts/asus-gl553vd/configuration.nix

32 lines
782 B
Nix
Raw Normal View History

2024-05-06 16:58:45 +03:00
{ globalData, ... }:
2024-04-16 02:51:46 +03:00
{
imports = [
./hardware-configuration
./configs
./users
];
################################################################################
# Services
################################################################################
# Enable the Docker
2024-04-22 23:43:16 +03:00
# virtualisation.docker.enable = true;
2024-04-16 02:51:46 +03:00
# Torrent
# services.transmission.enable = true;
2024-05-06 16:58:45 +03:00
################################################################################
# Programs
################################################################################
local.programs.browsers.tor-browser = {
enable = true;
container = {
enable = true;
externalInterface = "wg0";
sshAuthorizedKeys = globalData.publicKeys.users.jan;
};
};
2024-04-16 02:51:46 +03:00
}