nixos-config/config/installer.nix

16 lines
431 B
Nix
Raw Normal View History

2022-04-16 13:19:56 +01: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-04-16 13:19:56 +01:00
boot.supportedFilesystems = [ "zfs" ];
2022-04-19 09:31:35 +01:00
# Oldest system I have is skylake-based
2022-04-20 12:05:28 +01:00
/*nixpkgs.localSystem = {
2022-04-19 09:31:35 +01:00
gcc.arch = "skylake";
gcc.tune = "skylake";
system = "x86_64-linux";
2022-04-20 12:05:28 +01:00
};*/
}