NixOS-Configs/hosts/nuwww/hardware-configuration.nix
2026-05-06 17:48:16 -05:00

15 lines
398 B
Nix

{ config, lib, pkgs, modulesPath, ... }: {
imports = [];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
fileSystems."/" = {
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001";
fsType = "vfat";
};
}