nixos/nodes/mira/configuration.nix

35 lines
847 B
Nix
Raw Permalink Normal View History

{ self, config, lib, nixpkgs, pkgs, ... }:
let
in
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Setup keyfile
boot.initrd.secrets = {
"/crypto_keyfile.bin" = null;
};
networking.hostName = "mira";
# Enable swap on luks
boot.initrd.luks.devices."luks-8aa0584a-df60-42c3-adc2-d88b85544c85".device = "/dev/disk/by-uuid/8aa0584a-df60-42c3-adc2-d88b85544c85";
boot.initrd.luks.devices."luks-8aa0584a-df60-42c3-adc2-d88b85544c85".keyFile = "/crypto_keyfile.bin";
2024-09-08 23:38:16 +00:00
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
## amdvlk: an open-source Vulkan driver from AMD
amdvlk
vaapiVdpau
libvdpau-va-gl
];
extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
};
}