50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ pkgs, ... }:
|
||
|
||
let
|
||
speedtest_port = "19472";
|
||
in
|
||
{
|
||
imports = [
|
||
# Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
./home-assistant.nix
|
||
./networking.nix
|
||
];
|
||
|
||
greg = {
|
||
home = true;
|
||
gnome.enable = false;
|
||
proxies = {
|
||
"speed.home".target = "http://localhost:${speedtest_port}";
|
||
"speedtest.thehellings.lan".target = "http://localhost:${speedtest_port}";
|
||
};
|
||
};
|
||
|
||
# Bootloader.
|
||
boot.loader.grub = {
|
||
enable = true;
|
||
device = "/dev/vda";
|
||
useOSProber = true;
|
||
};
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
awscli2
|
||
create_ssl
|
||
step-ca
|
||
];
|
||
|
||
networking.hostName = "genesis"; # Define your hostname.
|
||
|
||
virtualisation.oci-containers.containers = {
|
||
speedtest = {
|
||
image = "ghcr.io/librespeed/speedtest";
|
||
hostname = "speedtest";
|
||
ports = [ "${speedtest_port}:80" ];
|
||
};
|
||
};
|
||
}
|