nixos-config

NixOS configs for my systems
Log | Files | Refs

hardware.nix (203B)


      1 { modulesPath, ... }:
      2 
      3 {
      4   imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
      5 
      6   boot.loader.grub.device = "/dev/sda";
      7 
      8   fileSystems."/" = {
      9     device = "/dev/sda1";
     10     fsType = "ext4";
     11   };
     12 }