From 1cfdf347657475643422e3b6e6debfbe747d5c75 Mon Sep 17 00:00:00 2001 From: sajenim Date: Sun, 23 Jul 2023 08:28:04 +0800 Subject: [PATCH] call our custom packages --- pkgs/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/default.nix b/pkgs/default.nix index 8c5e910..80b8da3 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -2,5 +2,6 @@ # You can build them using 'nix build .#example' or (legacy) 'nix-build -A example' { pkgs ? (import ../nixpkgs.nix) { } }: { - # example = pkgs.callPackage ./example { }; + xmobar = pkgs.callPackage ./xmobar-config { }; + xmonad = pkgs.callPackage ./xmonad-config { }; }