nix-config/machines/storage/s0/configuration.nix
zuckerberg f8fd84fceb add s0
2021-05-08 21:05:14 -04:00

14 lines
313 B
Nix

{ config, pkgs, lib, ... }:
{
imports =[
./helios64.nix
../../../common/common.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;
}