aboutsummaryrefslogtreecommitdiff
path: root/environment.nix
blob: 9fd6f496fa3a2db9a1e3ecee2cea430ebf4d2b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    gcc
    python311
    zoxide
    starship
    tmux
    cmake
    git-lfs
  ];

  programs.mosh.enable = true;
}