mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-19 21:49:52 -07:00
refactor: add zen browser for aarch64-linux
This commit is contained in:
parent
54c6920e83
commit
26d55fa278
5 changed files with 90 additions and 15 deletions
|
@ -5,6 +5,7 @@
|
|||
}:
|
||||
let
|
||||
bleedingpkgs = inputs.bleedingpkgs.legacyPackages.${pkgs.system};
|
||||
inherit (pkgs) system;
|
||||
in
|
||||
# stablepkgs = inputs.stablepkgs.legacyPackages.${pkgs.system};
|
||||
# nixpkgs-small = inputs.nixpkgs-unstable-small.legacyPackages.${pkgs.system};
|
||||
|
@ -12,6 +13,13 @@ in
|
|||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
_7zz = bleedingpkgs._7zz;
|
||||
zen-browser =
|
||||
if system == "x86_64-linux" then
|
||||
inputs.zen-browser.packages.${system}.default
|
||||
else if system == "aarch64-linux" then
|
||||
inputs.zen-browser-source.packages.${system}.default
|
||||
else
|
||||
null;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue