aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/mercury/system/environment.nix
blob: c59eb2203bde7f0cfa947f5727bf27503519e3db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, ... }:

{
  environment = {
    localBinInPath = true;
    systemPackages = with pkgs; [
      gnome-tweaks
      ghostty
      unzip
      helix
      wget
      tack
      zip
      git
    ];
  };
}