This commit is contained in:
iFargle 2023-10-07 21:50:22 +09:00
parent d7dd26984e
commit af43f293ec
2 changed files with 13 additions and 0 deletions

View file

@ -4,10 +4,16 @@
{ config, lib, pkgs, modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
./temp.nix
];
# Enable distributed Builds
nix.distributedBuilds = true;
# Enablet docker and docker-compose
environment.systemPackages = [ pkgs.docker-compose ];
virtualisation.docker.enable = true;
#####################################################################################
# BEGIN hardware config
#####################################################################################

View file

@ -0,0 +1,7 @@
{pkgs, lib, config, ...}: {
networking.firewall.allowedTCPPorts = [ 80 ];
services.nginx = {
enable = true;
};
};