1
0
Fork 0
forked from DGNum/lab-infra

fix(dns01): disk setup

This commit is contained in:
Constantin Gierczak--Galle 2024-11-22 15:46:51 +01:00
parent bebb0ac3a0
commit 5db12a02f7
No known key found for this signature in database
3 changed files with 15 additions and 25 deletions

View file

@ -1,14 +1,14 @@
# 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.
{ lib, modulesPath, ... }: { lib, modulesPath, ... }:
{ {
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot = { boot = {
initrd = { loader.systemd-boot.enable = true;
availableKernelModules = [ initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
initrd.availableKernelModules = [
"ata_piix" "ata_piix"
"uhci_hcd" "uhci_hcd"
"virtio_pci" "virtio_pci"
@ -16,28 +16,19 @@
"sd_mod" "sd_mod"
"sr_mod" "sr_mod"
]; ];
kernelModules = [ ];
};
kernelModules = [ ];
extraModulePackages = [ ];
}; };
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/e2536e0b-2f60-467e-b4a4-dcea2a4928ce"; device = "/dev/disk/by-partlabel/disk-sda-root";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/913D-7694"; device = "/dev/disk/by-partlabel/disk-sda-ESP";
fsType = "vfat"; fsType = "vfat";
}; };
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking networking.useDHCP = lib.mkDefault false;
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }

View file

@ -16,7 +16,7 @@ with dns.lib.combinators;
#AAAA = [ "4321:0:1:2:3:4:567:89ab" ]; #AAAA = [ "4321:0:1:2:3:4:567:89ab" ];
subdomains = { subdomains = {
photoprism = host "129.199.146.101" ""; photoprism = host "129.199.146.101" null;
immich = host "129.199.146.101" ""; immich = host "129.199.146.101" null;
}; };
} }

View file

@ -16,7 +16,6 @@
"sd_mod" "sd_mod"
"sr_mod" "sr_mod"
]; ];
}; };
fileSystems."/" = { fileSystems."/" = {