aboutsummaryrefslogtreecommitdiff
path: root/nixos/environment.nix
blob: 87c36b8d3d23568ea243ea7e14db44bd7c39f441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    gcc
    # python312 # already added with nvim.nix
    zoxide
    starship
    cmake
    git-lfs
    inetutils
    btop
    pipes
    playerctl
    libnotify
    termusic
    eza
    lazygit
  ];
  fonts.packages = with pkgs; [
    nerd-fonts.jetbrains-mono
  ];
}