xin/pkgs/default.nix

10 lines
291 B
Nix
Raw Normal View History

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