nur/default.nix

26 lines
1.1 KiB
Nix

2023-04-12 14:45:08 +02:00
# This file describes your repository contents.
# It should return a set of nix derivations
# and optionally the special attributes `lib`, `modules` and `overlays`.
# It should NOT import <nixpkgs>. Instead, you should take pkgs as an argument.
# Having pkgs default to <nixpkgs> is fine though, and it lets you use short
# commands such as:
# nix-build -A mypackage
2023-05-08 04:50:12 +02:00
{ pkgs ? import <nixpkgs> { }
2023-05-07 19:46:09 +02:00
, system ? builtins.currentSystem
}: {
2023-04-12 14:45:08 +02:00
# The `lib`, `modules`, and `overlay` names are special
lib = import ./lib { inherit pkgs; }; # functions
modules = import ./modules; # NixOS modules
overlays = import ./overlays; # nixpkgs overlays
2023-04-12 16:46:32 +02:00
firefox-addons = pkgs.recurseIntoAttrs (pkgs.callPackage ./pkgs/firefox-addons { });
gitea-nyx = pkgs.callPackage ./pkgs/gitea-nyx { };
2023-05-07 22:46:07 +02:00
emacsPackages = pkgs.recurseIntoAttrs (pkgs.callPackage ./pkgs/emacs-packages { });
pythonPackages = pkgs.recurseIntoAttrs (pkgs.callPackage ./pkgs/python-packages { });
rec-mono-nyx = pkgs.callPackage ./pkgs/rec-mono-nyx { inherit system; };
2023-05-08 04:50:12 +02:00
libspectre = pkgs.callPackage ./pkgs/libspectre { };
2023-04-12 14:45:08 +02:00
}