33 lines
592 B
Nix
33 lines
592 B
Nix
|
{ config, inputs, ... }: {
|
||
|
imports = with inputs.hardware.nixosModules; [
|
||
|
./hardware-configuration.nix
|
||
|
common-cpu-amd
|
||
|
common-gpu-amd
|
||
|
];
|
||
|
|
||
|
hostcfg = {
|
||
|
hostname = "valinor";
|
||
|
username = "sora";
|
||
|
make = {
|
||
|
gui = true;
|
||
|
cli = true;
|
||
|
virt = true;
|
||
|
power = true;
|
||
|
game = true;
|
||
|
};
|
||
|
net = {
|
||
|
wlp = {
|
||
|
enable = true;
|
||
|
nif = "wlp3s0";
|
||
|
};
|
||
|
wg = {
|
||
|
enable = true;
|
||
|
ip4 = "10.10.1.5/32";
|
||
|
ip6 = "fd10:10:10::5/128";
|
||
|
pk = config.sops.secrets.valinor_wg_priv.path;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|