templates/fish/nixpkgs/flake.nix
Kiana Sheibani afb4b62827
change basically everything
It's a good thing that I'm not collaborating with anyone on this
repository, because this is REALLY bad practice.
2025-11-23 22:43:24 -05:00

17 lines
470 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
};
outputs = { self, nixpkgs, systems, ... }:
let eachSystem = nixpkgs.lib.genAttrs (import systems);
in {
packages = eachSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
hello = pkgs.callPackage ./package.nix {};
default = self.packages.${system}.hello;
});
};
}