NixOS/settings.nix

24 lines
599 B
Nix
Raw Normal View History

{
hardware = {
2023-12-15 17:49:12 +00:00
# support for GPUs
amdgpu = true;
intelgpu = false;
nvidiagpu = false;
2023-12-15 17:49:12 +00:00
# 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
};
}