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

@ -1,3 +1,13 @@
{ ... }:
{ pkgs, ... }:
{
programs = {
zsh = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
vim
home-manager
];
}