Add support for asahi nixos (aarch64)
This commit is contained in:
parent
baaa523af9
commit
dd9c5d10d5
24 changed files with 9030 additions and 2 deletions
24
nix/system/linux_aarch.nix
Normal file
24
nix/system/linux_aarch.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue