dotfiles/nixos/packages/droid.nix
2024-11-07 16:25:41 -07:00

14 lines
270 B
Nix

# Package we want in our environment.
#
# vim: et:ts=2:sw=2:
#
{ pkgs, ... }@specialArgs:
{
# Allow unfree packages
#nixpkgs.config.allowUnfree = true;
#
# Systemwide environment packages.
#
environment.packages = (import ./default.pkgs.nix) specialArgs;
}