add drivers for a310
This commit is contained in:
parent
8b33de0c02
commit
7507bf55bf
@ -5,6 +5,7 @@
|
|||||||
users.users.root = {
|
users.users.root = {
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEGGGpRpDQRstoqnCAQioSnh6PZRzNQL7lGJHksIkcoF builder"
|
||||||
];
|
];
|
||||||
hashedPassword = null;
|
hashedPassword = null;
|
||||||
};
|
};
|
||||||
|
@ -36,6 +36,20 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Add Intel Arc A310 GPU Drivers
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
hardware.graphics = {
|
||||||
|
enable = true;
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
libvdpau-va-gl
|
||||||
|
intel-vaapi-driver
|
||||||
|
intel-media-driver
|
||||||
|
intel-compute-runtime
|
||||||
|
intel-ocl
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# Network Configuration
|
# Network Configuration
|
||||||
networking = {
|
networking = {
|
||||||
hostName = lib.mkForce "";
|
hostName = lib.mkForce "";
|
||||||
@ -158,6 +172,7 @@
|
|||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
htop
|
htop
|
||||||
|
intel-gpu-tools
|
||||||
k9s
|
k9s
|
||||||
kubectl
|
kubectl
|
||||||
kubernetes-helm
|
kubernetes-helm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user