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

20 lines
335 B
Nix

#
# GUI packages we want in our environment.
# For machines that have GUI support.
#
# vim: et:ts=2:sw=2:
#
{
pkgs,
deprekages,
niri,
config,
...
}@args:
{
#
# Systemwide environment packages, for GUI.
#
nixpkgs.config.android_sdk.accept_license = true;
environment.systemPackages = (import ./gui.pkgs.nix) args;
}