.dotfiles/nix/system/linux_aarch.nix

24 lines
481 B
Nix

{ 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;
};
}