-
Notifications
You must be signed in to change notification settings - Fork 0
/
programs.nix
53 lines (46 loc) · 1.3 KB
/
programs.nix
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ pkgs, config, ... }: {
# use podman
virtualisation = {
containers.enable = true;
podman = {
enable = true;
};
};
# good
programs.git = {
enable = true;
lfs.enable = true;
};
# use zsh as default shell
# programs.zsh.enable = true;
# users.defaultUserShell = pkgs.zsh;
# direnv (https://direnv.net/) load and unload environment variables depending on the current directory.
programs.direnv.enable = true;
# programs
environment.systemPackages = with pkgs; [
nano # simple text editor
# busybox # pciutils, usbutils, wget. not sure if i want all of these features
wget # download stuff
curl # curl
tree # directory tree
kubo # ipfs
jq # json stuff
cachix # nix cache
nmap # map network
gptfdisk # format gpt disk
kubectl # manage cukernetes
glances # system monitor
alejandra # nix formater
# micromamba # nice to have
file # file type cli tool
nixpkgs-fmt # format nix
shfmt # format ssh
nix-tree # see tree of nix stuff
nix-init # init nix project from a repo
];
# programs.ccache = {
# enable = true;
# packageNames = [ "wxGTK32" "ffmpeg" "libav_all" "opencv" "opencv3" "opencv2" "blender" ];
# };
# nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
}