aboutsummaryrefslogtreecommitdiff
path: root/environment.nix
blob: 4d83e911b38f68772d8e8684cb1d6a04ff400ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    gcc
    python311
    zoxide
    starship
    cmake
    git-lfs
    inetutils
    btop
  ];
  fonts.packages = with pkgs; [
    nerd-fonts.jetbrains-mono
  ];
}