chore: update asahi

This commit is contained in:
2026-01-17 10:14:01 -05:00
parent 6cfe7228f3
commit 0968aa12e3
2 changed files with 9 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
{ namespace, lib, ... }:
{ namespace, lib, pkgs, ... }:
let
inherit (lib.${namespace}) enabled;
in
@@ -30,7 +30,6 @@ in
opengl = enabled;
asahi = {
enable = true;
enableGPU = true;
firmwareDirectory = ./firmware;
};
};
@@ -54,4 +53,11 @@ in
};
};
};
# Additional System Packages
environment.systemPackages = with pkgs; [
mosh
rclone
unzip
];
}