aboutsummaryrefslogtreecommitdiff
path: root/nixos/environment.nix
blob: bf81cf98f301e3f17b1e6f7838f72eb10f8c87a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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
    fzf
  ];
  fonts.packages = with pkgs; [
    nerd-fonts.jetbrains-mono
  ];
}