From b1b57a97ad6ea6c0be8154663b2e991c93797d17 Mon Sep 17 00:00:00 2001 From: clerie Date: Sat, 27 Mar 2021 12:41:14 +0100 Subject: [PATCH] Add host world-dev --- hosts/world-dev/configuration.nix | 25 ++++++++++++++++++++++ hosts/world-dev/hardware-configuration.nix | 23 ++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 hosts/world-dev/configuration.nix create mode 100644 hosts/world-dev/hardware-configuration.nix diff --git a/hosts/world-dev/configuration.nix b/hosts/world-dev/configuration.nix new file mode 100644 index 0000000..09e9376 --- /dev/null +++ b/hosts/world-dev/configuration.nix @@ -0,0 +1,25 @@ +{ config, pkgs, ... }: + +{ + imports = + [ + ./hardware-configuration.nix + ../../configuration/common + ../../configuration/proxmox-vm + ]; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.device = "/dev/vda"; + + networking.hostName = "world-dev"; + + networking.useDHCP = false; + networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffcb::b"; prefixLength = 64; } ]; + networking.interfaces.ens19.ipv4.addresses = [ { address = "192.168.10.34"; prefixLength = 24; } ]; + networking.defaultGateway = { address = "192.168.10.1"; interface = "ens19"; }; + networking.defaultGateway6 = { address = "2001:638:904:ffcb::1"; interface = "ens18"; }; + networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ]; + + system.stateVersion = "21.03"; +} diff --git a/hosts/world-dev/hardware-configuration.nix b/hosts/world-dev/hardware-configuration.nix new file mode 100644 index 0000000..39fda35 --- /dev/null +++ b/hosts/world-dev/hardware-configuration.nix @@ -0,0 +1,23 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/profiles/qemu-guest.nix") + ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/923bc691-9109-43d3-af2f-c0dc0e240923"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + +}