Skip to content

Instantly share code, notes, and snippets.

@colemickens
Created May 2, 2021 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colemickens/1db82630197af1da98da0cb37d62f11f to your computer and use it in GitHub Desktop.
Save colemickens/1db82630197af1da98da0cb37d62f11f to your computer and use it in GitHub Desktop.
{ pkgs, lib, ... }:
let
commonPkgs = import ./common.pkgs.nix { inherit lib; inherit pkgs; };
macPkgs = import ./mac.pkgs.nix { inherit lib; inherit pkgs; };
combinedPkgs = commonPkgs ++ macPkgs;
in {
config.environment.systemPackages = combinedPkgs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment