24 lines
599 B
Nix
24 lines
599 B
Nix
{
|
|
hardware = {
|
|
# support for GPUs
|
|
amdgpu = true;
|
|
intelgpu = false;
|
|
nvidiagpu = false;
|
|
|
|
# support for yubikey and additional software
|
|
yubikey = {
|
|
enable = true;
|
|
# additional software
|
|
ykman = false;
|
|
authenticator = true; # flutter yubico authenticator
|
|
};
|
|
};
|
|
|
|
dvd = true; # enable DVD decryption + ripping via Handbrake
|
|
bluray = true; # enable Bluray decryption (requires additional setup)
|
|
|
|
networking = {
|
|
wireguard = true; # enable wireguard protocol
|
|
};
|
|
}
|