nixos-config/config/installer.nix

24 lines
469 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{
lib,
pkgs,
nixpkgs,
...
}: {
imports = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
];
networking.wireguard.interfaces."wg0".ips = [
"fd0d:a262:1fa6:e621:6ec2:1e4e:ce7f:d2af/64"
];
2022-06-12 15:39:15 +00:00
boot.supportedFilesystems = ["zfs"];
networking.hostId = "8425e349";
2022-04-19 08:31:35 +00:00
# Oldest system I have is skylake-based
2022-06-12 15:39:15 +00:00
/*
nixpkgs.localSystem = {
gcc.arch = "skylake";
gcc.tune = "skylake";
system = "x86_64-linux";
};
*/
}