build: update build guide, nix and guix packages

This commit is contained in:
outfoxxed 2025-06-12 04:48:09 -07:00
parent 703a378908
commit 05b5eccf2e
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 20 additions and 16 deletions

View file

@ -4,9 +4,10 @@
};
outputs = { self, nixpkgs }: let
forEachSystem = fn: nixpkgs.lib.genAttrs
[ "x86_64-linux" "aarch64-linux" ]
(system: fn system nixpkgs.legacyPackages.${system});
forEachSystem = fn:
nixpkgs.lib.genAttrs
nixpkgs.lib.platforms.linux
(system: fn system nixpkgs.legacyPackages.${system});
in {
packages = forEachSystem (system: pkgs: rec {
quickshell = pkgs.callPackage ./default.nix {