add iso, change networking for fw
This commit is contained in:
13
iso/hardware-configuration.nix
Normal file
13
iso/hardware-configuration.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ config, pkgs, ... }: {
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-label/boot";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-partlabel/NIXOS";
|
||||
fsType = "ext4";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user