This commit is contained in:
Aaron Bieber 2022-09-15 15:39:28 -06:00
parent e7bdc10253
commit 536394b11e
No known key found for this signature in database

View File

@ -1,9 +1,10 @@
{ config, lib, pkgs, isUnstable, ... }:
with pkgs; {
environment.systemPackages = with pkgs; [
#(callPackage ./cinny-desktop.nix { inherit isUnstable; })
#(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./govulncheck.nix { inherit isUnstable; })
];
environment.systemPackages = with pkgs;
[
#(callPackage ./cinny-desktop.nix { inherit isUnstable; })
#(callPackage ./mudita-center.nix { inherit isUnstable; })
(callPackage ./govulncheck.nix { inherit isUnstable; })
];
}