pkgs: use main package entry point

This commit is contained in:
Aaron Bieber 2022-08-26 09:04:15 -06:00
parent f8815f80df
commit 53e85592ad
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
./dbuild
./gui
./pkgs
#./overlays
./services
./system/nix-config.nix
@ -97,8 +98,6 @@ in {
boot.cleanTmpDir = true;
environment.systemPackages = with pkgs; [
(callPackage ./pkgs/got.nix { inherit isUnstable; })
age
apg
bind

View File

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