summaryrefslogtreecommitdiff
path: root/profiles/base/packages.nix
blob: b0fcae4d979f04d0b7fe61112b60d0c72fb9b8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  pkgs,
  ...
}: {
  environment.systemPackages = with pkgs; [
    hyfetch
    neofetch
    pinentry-curses
    python311
  ];

  programs = {
    git.enable = true;
    gnupg = {
      agent = {
        enable = true;
        pinentryFlavor = lib.mkDefault "curses";
      };
    };
    vim.defaultEditor = true;
  };
}