aboutsummaryrefslogtreecommitdiff
path: root/nixos/hardware-configuration.nix
blob: dd0093983c8bf5fc5ec0270df566d213746ba766 (plain)
1
2
3
4
5
6
7
8
9
10
# This is just an example, you should generate yours with nixos-generate-config and put it in here.
{
  fileSystems."/" = {
    device = "/dev/sda1";
    fsType = "ext4";
  };

  # Set your system kind (needed for flakes)
  nixpkgs.hostPlatform = "x86_64-linux";
}