about summary refs log tree commit diff
path: root/nix/devel.nix
blob: 28311f8417bcadfcbfcb4b90b3f8bf1fe8a0ae4b (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
{ lib, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    bat comma fd jq ripgrep vim_configurable
    bintools gdb gnumake pkg-config
    exa gitAndTools.gitFull minicom rlwrap
    gcc go guile_3_0 lua rakudo zig
    man-pages man-pages-posix stdman
    texlive.combined.scheme-full
    (python3.withPackages (pypkgs: with pypkgs; [ flit rsskey ]))
  ];

  programs.gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
    pinentryFlavor = "qt";
  };

  services.openssh = {
    enable = true;
    settings = {
      PasswordAuthentication = false;
      KbdInteractiveAuthentication = false;
    };
  };
}