blob: ebd4da7c7ba1fc6875a87b0fb606ae1839427ebd (
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
|
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
exa fd gitAndTools.gitFull glow jq minicom manpages ripgrep rlwrap
gcc julia-stable-bin lua python3 rakudo zig
bintools gdb gnumake luaPackages.luacheck mypy pkg-config
plantuml sile texlive.combined.scheme-full
] ++ (with python3Packages; [ flit pip tox ]);
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services = {
# openssh.enable = true;
ipfs = {
enable = false;
dataDir = "/data/IPFS";
};
};
}
|