Test
This commit is contained in:
parent
d7dd26984e
commit
af43f293ec
2 changed files with 13 additions and 0 deletions
|
@ -4,10 +4,16 @@
|
||||||
{ config, lib, pkgs, modulesPath, ... }: {
|
{ config, lib, pkgs, modulesPath, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
|
./temp.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
# Enable distributed Builds
|
# Enable distributed Builds
|
||||||
nix.distributedBuilds = true;
|
nix.distributedBuilds = true;
|
||||||
|
|
||||||
|
# Enablet docker and docker-compose
|
||||||
|
environment.systemPackages = [ pkgs.docker-compose ];
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
# BEGIN hardware config
|
# BEGIN hardware config
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
|
|
7
nixos/hosts/nixos-rpi4-03/temp.nix
Normal file
7
nixos/hosts/nixos-rpi4-03/temp.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, lib, config, ...}: {
|
||||||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in a new issue