nixconfig/systems/ci/default.nix
soraefir 177c26e41d
Some checks failed
Nix Build / build-nixos (push) Has been cancelled
Eww Overlay
2024-04-13 10:50:02 +02:00

30 lines
452 B
Nix

{ config, inputs, ... }: {
imports = [ ./hardware.nix ];
hostcfg = {
hostname = "valinor";
username = "sora";
make = {
gui = true;
cli = true;
virt = true;
power = true;
game = true;
develop = true;
};
net = {
wlp = {
enable = false;
nif = "NA";
};
wg = {
enable = false;
ip4 = "";
ip6 = "";
pk = "";
};
};
};
}