dots/hosts/nullstar/config.nix
2026-03-06 16:48:14 +02:00

35 lines
753 B
Nix

{ config, pkgs, pkgs-stable, lib, inputs, ... }:
{
imports =
[
./hardware/hardware-configuration.nix
./hardware/disko.nix
(inputs.nixos-hardware.nixosModules.framework-16-7040-amd)
];
specialisation."VFIO".configuration = {
imports = [ ./vfio.nix ];
};
services.fwupd.enable = true;
networking.hostName = "nullstar";
networking.hostId = "322d5212";
# Enable FL16 Input modules
hardware.inputmodule.enable = true;
hardware.keyboard.qmk.enable = true;
hardware.graphics.extraPackages = with pkgs; [
libvdpau-va-gl
rocmPackages.clr.icd
];
services.ollama.package = pkgs-stable.ollama-rocm;
environment.systemPackages = with pkgs; [
framework-tool
inputmodule-control
];
}