about summary refs log tree commit diff
path: root/default.nix
blob: 7e3b1d92c289734a34892db938ad306688a99157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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

{ pkgs ? import <nixpkgs> {} }:

let
  wrapNeomutt = pkgs.callPackage ./pkgs/neomutt_configurable/wrapper.nix { };
in
{
  # The `lib`, `modules`, and `overlay` names are special
  lib = import ./lib { inherit pkgs; }; # functions
  modules = import ./modules; # NixOS modules
  overlays = import ./overlays; # nixpkgs overlays

  st = pkgs.callPackage ./pkgs/st { };
  dwm = pkgs.callPackage ./pkgs/dwm { };
  pndwm = pkgs.callPackage ./pkgs/dwm/pndwm.nix { };
  dwmblocks = pkgs.callPackage ./pkgs/dwmblocks { };
  dmenu = pkgs.callPackage ./pkgs/dmenu { };
  libthinkpad = pkgs.callPackage ./pkgs/libthinkpad { };
  dockd = pkgs.callPackage ./pkgs/dockd { };
  larbs-mail = pkgs.callPackage ./pkgs/larbs-mail { };
  larbs-news = pkgs.callPackage ./pkgs/larbs-news { };
  larbs-nvim = pkgs.callPackage ./pkgs/larbs-nvim { };
  dmenuunicode = pkgs.callPackage ./pkgs/dmenuunicode { };
  larbs-scripts = pkgs.callPackage ./pkgs/larbs-scripts { };
  displayselect = pkgs.callPackage ./pkgs/larbs-scripts/new_ds.nix { };

  #fx = (pkgs.callPackage ./pkgs/fx { }).package;
  # xcb-util = pkgs.callPackage ./pkgs/xcb-util { }; #unknown error
  # ...
}