polynom-flake/flake.nix

23 lines
521 B
Nix
Raw Permalink Normal View History

2022-05-14 16:11:53 +00:00
{
description = "NixOS configuration that may be helpful";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/21.11";
};
outputs = {
self,
nixpkgs
}: let
supportedSystems = [ "x86_64-linux" ];
forAllSystems = nixpkgs.lib.attrsets.genAttrs supportedSystems;
in {
packages = forAllSystems (system: let
pkgs = import nixpkgs { inherit system; };
in {
jabberSpam = pkgs.callPackage ./pkgs/jabberSpam.nix {};
2022-05-31 11:59:44 +00:00
eturnal = pkgs.callPackage ./pkgs/eturnal {};
2022-05-14 16:11:53 +00:00
});
};
}