Add support for asahi nixos (aarch64)

This commit is contained in:
Martin Larsson 2025-05-04 20:38:56 +00:00
parent baaa523af9
commit dd9c5d10d5
24 changed files with 9030 additions and 2 deletions

View file

@ -0,0 +1,24 @@
{ pkgs, ... }:
{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
hardware.asahi.peripheralFirmwareDirectory = ./firmware;
networking.wireless.iwd = {
enable = true;
settings.General.EnableNetworkConfiguration = true;
};
users.users.larssonmartin = {
isNormalUser = true;
home = "/home/larssonmartin";
extraGroups = [ "wheel" ];
packages = with pkgs; [];
shell = pkgs.zsh;
};
}