34 lines
608 B
Nix
34 lines
608 B
Nix
|
{
|
||
|
syscfg = {
|
||
|
hostname = "valinor";
|
||
|
defaultUser = "sora";
|
||
|
users = [{
|
||
|
username = "sora";
|
||
|
git = {
|
||
|
email = "soraefir+git@helcel";
|
||
|
username = "soraefir";
|
||
|
key = "4E241635F8EDD2919D2FB44CA362EA0491E2EEA0";
|
||
|
};
|
||
|
}];
|
||
|
make = {
|
||
|
gui = true;
|
||
|
cli = true;
|
||
|
virt = true;
|
||
|
power = true;
|
||
|
game = true;
|
||
|
develop = true;
|
||
|
};
|
||
|
net = {
|
||
|
wlp = {
|
||
|
enable = true;
|
||
|
nif = "wlp3s0";
|
||
|
};
|
||
|
wg = {
|
||
|
enable = true;
|
||
|
ip4 = "10.10.1.5/32";
|
||
|
ip6 = "fd10:10:10::5/128";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|