dotfiles.nix/pkgs/default.nix

8 lines
297 B
Nix
Raw Normal View History

2023-04-03 22:41:22 +08:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs ? (import ../nixpkgs.nix) { } }: {
2023-07-23 08:28:04 +08:00
xmobar = pkgs.callPackage ./xmobar-config { };
xmonad = pkgs.callPackage ./xmonad-config { };
2023-04-03 22:41:22 +08:00
}