pkgs: use main package entry point

This commit is contained in:
Aaron Bieber 2022-08-26 09:04:15 -06:00
parent f598aae48b
commit 6c0df153a3
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -18,6 +18,7 @@ in {
./configs/zsh.nix ./configs/zsh.nix
./dbuild ./dbuild
./gui ./gui
./pkgs
#./overlays #./overlays
./services ./services
./system/nix-config.nix ./system/nix-config.nix
@ -97,8 +98,6 @@ in {
boot.cleanTmpDir = true; boot.cleanTmpDir = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(callPackage ./pkgs/got.nix { inherit isUnstable; })
age age
apg apg
bind bind

View File

@ -2,7 +2,8 @@
with pkgs; { with pkgs; {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(callPackage ./cinny-desktop.nix { inherit isUnstable; }) #(callPackage ./cinny-desktop.nix { inherit isUnstable; })
(callPackage ./mudita-center.nix { inherit isUnstable; }) #(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./got.nix { inherit isUnstable; })
]; ];
} }