xin/pkgs/default.nix

11 lines
295 B
Nix
Raw Normal View History

2022-08-25 12:21:35 -06:00
{ config, lib, pkgs, isUnstable, ... }:
with pkgs; {
2022-08-26 11:17:27 -06:00
environment.systemPackages = with pkgs;
[
#(callPackage ./cinny-desktop.nix { inherit isUnstable; })
#(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./got.nix { inherit isUnstable; })
];
2022-08-25 12:21:35 -06:00
}