NixOS-Configs/hosts/loki/colmena.nix
2024-10-04 06:46:11 -05:00

17 lines
239 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./default.nix
];
networking.hostName = "loki";
boot.binfmt.emulatedSystems = ["aarch64-linux"];
deployment = {
tags = ["workstation" "intel"];
};
}