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

{
  environment.systemPackages = with pkgs; [
    exa fd gitAndTools.gitFull glow jq minicom man-pages ripgrep rlwrap
    gcc go guile_3_0 lua python3 rakudo zig
    bintools gdb gnumake pkg-config
    texlive.combined.scheme-full
  ] ++ (with python3Packages; [ flit ]);

  programs.mtr.enable = true;
  programs.gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
  };

  services = {
    openssh = {
      enable = true;
      passwordAuthentication = false;
      kbdInteractiveAuthentication = false;
    };

    ipfs = {
      enableGC = true;
      user = "sea";
      dataDir = "/home/sea/.ipfs";
      # autoMount = true;
      localDiscovery = true;
    };
  };

  virtualisation.podman = {
    dockerCompat = true;
    enable = true;
  };
}