Eww Overlay
Some checks failed
Nix Build / build-nixos (push) Has been cancelled

This commit is contained in:
soraefir
2024-04-13 09:32:22 +02:00
parent e4b93499b9
commit 177c26e41d
12 changed files with 171 additions and 28 deletions

29
systems/ci/default.nix Normal file
View File

@ -0,0 +1,29 @@
{ 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 = "";
};
};
};
}