Files
company-nix/hosts/vps1/hardware-configuration.nix
2026-03-18 02:44:54 +01:00

11 lines
222 B
Nix

{ lib, ... }:
{
# Replace this file with the generated hardware config from the target host.
fileSystems."/" = lib.mkDefault {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
swapDevices = [ ];
}