summaryrefslogtreecommitdiff
path: root/modules/environment/system-packages/default.nix
blob: 228280c3e3bfb0c0d221fec52acdfe105c8aa79f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:
{
  imports = [
    ./gtk.nix
    ./usb.nix
    ./vulkan.nix
  ];

  environment.systemPackages = with pkgs; [
    vim
    wget
    git
    mediastreamer-openh264
    pinentry
  ];
}