mirror of
https://github.com/zoriya/ags.git
synced 2025-12-06 00:06:10 +00:00
22 lines
504 B
Nix
22 lines
504 B
Nix
{
|
|
description = "A customizable and extensible shell";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { nixpkgs, self }: let
|
|
genSystems = nixpkgs.lib.genAttrs [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
pkgs = genSystems (system: import nixpkgs {inherit system;});
|
|
in {
|
|
packages = genSystems (system: {
|
|
default = pkgs.${system}.callPackage ./nix {};
|
|
});
|
|
|
|
homeManagerModules.default = import ./nix/hm-module.nix self;
|
|
};
|
|
}
|