nix-config/machines/storage/s0/configuration.nix
2021-06-22 21:23:29 -04:00

13 lines
282 B
Nix

{ config, pkgs, lib, ... }:
{
imports =[
./helios64.nix
];
nix.flakes.enable = true;
networking.hostName = "s0";
fileSystems."/" = { device = lib.mkForce "/dev/disk/by-label/bold-emmc"; fsType = lib.mkForce "btrfs"; };
networking.interfaces.eth0.useDHCP = true;
}