{lux,las,nyc}01-frantech: init
This commit is contained in:
parent
c26a321f5f
commit
db1b568d63
7 changed files with 249 additions and 0 deletions
|
@ -30,6 +30,9 @@ let
|
|||
"blade-torres"
|
||||
"blade-chakotay"
|
||||
"blade-kim"
|
||||
"lux01-frantech"
|
||||
"nyc01-frantech"
|
||||
"las01-frantech"
|
||||
];
|
||||
rebuilder = system: (import ./lib/rebuilder.nix (args // { system = system; }));
|
||||
systemCfgs = lib.genAttrs systems
|
||||
|
|
14
ops/nixos/las01-frantech/README.md
Normal file
14
ops/nixos/las01-frantech/README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
# las01-frantech.as205479.net
|
||||
|
||||
1GiB RAM VM from BuyVM.
|
||||
|
||||
Internet:
|
||||
|
||||
* 205.185.116.42/24 (gw 205.185.116.1)
|
||||
* 2605:6400:20:179b::1/48 (gw 2605:6400:20::1)
|
68
ops/nixos/las01-frantech/default.nix
Normal file
68
ops/nixos/las01-frantech/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
{ depot, lib, pkgs, rebuilder, config, ... }:
|
||||
let
|
||||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports = [
|
||||
../../../third_party/nixpkgs/nixos/modules/profiles/qemu-guest.nix
|
||||
../lib/low-space.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ata_piix"
|
||||
"uhci_hcd"
|
||||
"virtio_pci"
|
||||
"virtio_scsi"
|
||||
"sr_mod"
|
||||
"virtio_blk"
|
||||
];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
|
||||
# Use GRUB.
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "/dev/vda";
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/vda1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
nix.maxJobs = lib.mkDefault 1;
|
||||
|
||||
# Networking!
|
||||
networking = {
|
||||
hostName = "las01-frantech";
|
||||
domain = "as205479.net";
|
||||
hostId = "2b6a8f37";
|
||||
|
||||
nameservers = [
|
||||
"2001:4860:4860::8888"
|
||||
"2001:4860:4860::8844"
|
||||
"8.8.8.8"
|
||||
"8.8.4.4"
|
||||
];
|
||||
useDHCP = false;
|
||||
defaultGateway = {
|
||||
address = "205.185.116.1";
|
||||
interface = "ens3";
|
||||
};
|
||||
defaultGateway6 = {
|
||||
address = "2605:6400:20::1";
|
||||
interface = "ens3";
|
||||
};
|
||||
interfaces.ens3 = {
|
||||
ipv4.addresses = [{ address = "205.185.116.42"; prefixLength = 24; }];
|
||||
ipv6.addresses = [{ address = "2605:6400:20:179b::1"; prefixLength = 48; }];
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "21.05";
|
||||
}
|
14
ops/nixos/lux01-frantech/README.md
Normal file
14
ops/nixos/lux01-frantech/README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
# lux01-frantech.as205479.net
|
||||
|
||||
1GiB RAM VM from BuyVM.
|
||||
|
||||
Internet:
|
||||
|
||||
* 107.189.4.182/24 (gw 107.189.4.1)
|
||||
* 2605:6400:30:f1d2::1/48 (gw 2605:6400:30::1)
|
68
ops/nixos/lux01-frantech/default.nix
Normal file
68
ops/nixos/lux01-frantech/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
{ depot, lib, pkgs, rebuilder, config, ... }:
|
||||
let
|
||||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports = [
|
||||
../../../third_party/nixpkgs/nixos/modules/profiles/qemu-guest.nix
|
||||
../lib/low-space.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ata_piix"
|
||||
"uhci_hcd"
|
||||
"virtio_pci"
|
||||
"virtio_scsi"
|
||||
"sr_mod"
|
||||
"virtio_blk"
|
||||
];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
|
||||
# Use GRUB.
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "/dev/vda";
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/vda1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
nix.maxJobs = lib.mkDefault 1;
|
||||
|
||||
# Networking!
|
||||
networking = {
|
||||
hostName = "lux01-frantech";
|
||||
domain = "as205479.net";
|
||||
hostId = "92a60220";
|
||||
|
||||
nameservers = [
|
||||
"2001:4860:4860::8888"
|
||||
"2001:4860:4860::8844"
|
||||
"8.8.8.8"
|
||||
"8.8.4.4"
|
||||
];
|
||||
useDHCP = false;
|
||||
defaultGateway = {
|
||||
address = "107.189.4.1";
|
||||
interface = "ens3";
|
||||
};
|
||||
defaultGateway6 = {
|
||||
address = "2605:6400:30::1";
|
||||
interface = "ens3";
|
||||
};
|
||||
interfaces.ens3 = {
|
||||
ipv4.addresses = [{ address = "107.189.4.182"; prefixLength = 24; }];
|
||||
ipv6.addresses = [{ address = "2605:6400:30:f1d2::1"; prefixLength = 48; }];
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "21.05";
|
||||
}
|
14
ops/nixos/nyc01-frantech/README.md
Normal file
14
ops/nixos/nyc01-frantech/README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!--
|
||||
SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
# nyc01-frantech.as205479.net
|
||||
|
||||
1GiB RAM VM from BuyVM.
|
||||
|
||||
Internet:
|
||||
|
||||
* 199.195.254.60/24 (gw 199.195.254.1)
|
||||
* 2605:6400:10:c77::1/48 (gw 2605:6400:10::1)
|
68
ops/nixos/nyc01-frantech/default.nix
Normal file
68
ops/nixos/nyc01-frantech/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
{ depot, lib, pkgs, rebuilder, config, ... }:
|
||||
let
|
||||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports = [
|
||||
../../../third_party/nixpkgs/nixos/modules/profiles/qemu-guest.nix
|
||||
../lib/low-space.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ata_piix"
|
||||
"uhci_hcd"
|
||||
"virtio_pci"
|
||||
"virtio_scsi"
|
||||
"sr_mod"
|
||||
"virtio_blk"
|
||||
];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
|
||||
# Use GRUB.
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "/dev/vda";
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/vda1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
nix.maxJobs = lib.mkDefault 1;
|
||||
|
||||
# Networking!
|
||||
networking = {
|
||||
hostName = "nyc01-frantech";
|
||||
domain = "as205479.net";
|
||||
hostId = "251837df";
|
||||
|
||||
nameservers = [
|
||||
"2001:4860:4860::8888"
|
||||
"2001:4860:4860::8844"
|
||||
"8.8.8.8"
|
||||
"8.8.4.4"
|
||||
];
|
||||
useDHCP = false;
|
||||
defaultGateway = {
|
||||
address = "199.195.254.1";
|
||||
interface = "ens3";
|
||||
};
|
||||
defaultGateway6 = {
|
||||
address = "2605:6400:10::1";
|
||||
interface = "ens3";
|
||||
};
|
||||
interfaces.ens3 = {
|
||||
ipv4.addresses = [{ address = "199.195.254.60"; prefixLength = 24; }];
|
||||
ipv6.addresses = [{ address = "2605:6400:10:c77::1"; prefixLength = 48; }];
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "21.05";
|
||||
}
|
Loading…
Reference in a new issue