diff --git a/systems/labrizor.nix b/systems/labrizor.nix index 34418ee..c709276 100644 --- a/systems/labrizor.nix +++ b/systems/labrizor.nix @@ -1,7 +1,17 @@ { config, lib, pkgs, modulesPath, ... }: { + networking.hostName = "labrizor"; + + fileSystems."/" = + { device = "/dev/disk/by-partlabel/primary"; + fsType = "btrfs"; + }; + fileSystems."/boot" = + { device = "/dev/disk/by-partlabel/ESP"; + fsType = "vfat"; + }; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ];