From 24bb2696e4296cf6ed51cab5206eb137d231cd31 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 8 Apr 2026 15:33:56 +0300 Subject: [PATCH] nix: add a package alias 'rogged' in flake outputs Signed-off-by: NotAShelf Change-Id: I2a526b49d0c8b43b529d760a340d8af56a6a6964 --- flake.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index e745bbd..5695498 100644 --- a/flake.nix +++ b/flake.nix @@ -1,13 +1,18 @@ { inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; - outputs = {nixpkgs, ...}: let + outputs = { + self, + nixpkgs, + ... + }: let systems = ["x86_64-linux" "aarch64-linux"]; forEachSystem = nixpkgs.lib.genAttrs systems; pkgsForEach = nixpkgs.legacyPackages; in { packages = forEachSystem (system: { - default = pkgsForEach.${system}.callPackage ./nix/package.nix {}; + rogged = pkgsForEach.${system}.callPackage ./nix/package.nix {}; + default = self.packages.${system}.rogged; }); devShells = forEachSystem (system: {