stockholm/lass/1systems/skynet/physical.nix

30 lines
658 B
Nix
Raw Normal View History

2018-05-12 13:51:24 +00:00
{
imports = [
./config.nix
2018-11-20 00:13:05 +00:00
<stockholm/krebs/2configs/hw/x220.nix>
2018-05-12 13:51:24 +00:00
];
2018-11-20 00:13:05 +00:00
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = true;
boot.loader.grub.device = "nodev";
networking.hostId = "06442b9a";
2023-09-03 09:46:09 +00:00
fileSystems."/" = {
device = "rpool/root";
fsType = "zfs";
};
2018-11-20 00:13:05 +00:00
2023-09-03 09:46:09 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0876-B308";
fsType = "vfat";
};
2018-11-20 00:13:05 +00:00
2018-05-12 13:51:24 +00:00
services.udev.extraRules = ''
SUBSYSTEM=="net", ATTR{address}=="10:0b:a9:a6:44:04", NAME="wl0"
SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:d1:90:fc", NAME="et0"
'';
}