aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/carbon/system/environment.nix
blob: 9de48594d0e3b0205d6c754067f7357194584f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ inputs, pkgs, ... }:

let
  system = pkgs.stdenv.hostPlatform.system;
  spotifast = inputs.spotifast.packages.${system}.spotifast-app;
in
{
  environment = {
    pathsToLink = [ "/Applications" ];
    systemPackages = with pkgs; [
      spotifast
      starship
      direnv
      claude
      helix
      gnupg
      wget
      zstd
      tack
      bat
      lsd
      xz
    ];
  };

  programs = {
    bash.enable = false;
    gnupg.agent.enable = true;
    zsh.enableGlobalCompInit = false;
    zsh.enableBashCompletion = true;
    zsh.enable = true;
  };
}