nixos-config/config/installer.nix

16 lines
431 B
Nix
Raw Normal View History

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