blob: 8840a1bd74524c0b299c20df4a3a996e6d83929d (
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
|
{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
bat fd jq ripgrep vim_configurable vimpager-latest
exa gitAndTools.gitFull minicom man-pages man-pages-posix rlwrap
gcc go guile_3_0 lua rakudo zig
bintools gdb gnumake pkg-config
texlive.combined.scheme-full
(python3.withPackages (pypkgs: with pypkgs; [ flit rsskey ]))
];
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "qt";
};
services.openssh = {
enable = true;
settings = {
passwordAuthentication = false;
kbdInteractiveAuthentication = false;
};
};
virtualisation.podman = {
dockerCompat = true;
enable = true;
};
}
|