My Nix Infra
nix nixos
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

/tmp use tmpfs, add yamllint, php extension grpc, telemetry, update cc GL ssh port

ydcjeff b2dd536b 121f5cec

+9 -1
+1 -1
config/git/config
··· 21 21 [includeIf "hasconfig:remote.*.url:https://gitlab.it.cs.nycu.edu.tw/**"] 22 22 path = ~/.config/git/cc 23 23 24 - [includeIf "hasconfig:remote.*.url:ssh://git@gitlab.cc.cs.nctu.edu.tw/**"] 24 + [includeIf "hasconfig:remote.*.url:ssh://git@gitlab.cc.cs.nctu.edu.tw:10022/**"] 25 25 path = ~/.config/git/cc 26 26 27 27 [includeIf "hasconfig:remote.*.url:https://github.com/**"]
+3
flake.nix
··· 36 36 enabled 37 37 ++ (with all; [ 38 38 xdebug 39 + opentelemetry 40 + grpc 39 41 ]) 40 42 ); 41 43 extraConfig = ''xdebug.mode=coverage''; ··· 54 56 redis 55 57 go-jsonnet 56 58 jsonnet-bundler 59 + yamllint 57 60 ]; 58 61 }; 59 62 }
+5
modules/nixos.nix
··· 180 180 }; 181 181 }; 182 182 183 + boot.tmp.useTmpfs = true; 184 + systemd.services.nix-daemon = { 185 + environment.TMPDIR = "/var/tmp"; 186 + }; 187 + 183 188 services.power-profiles-daemon.enable = false; 184 189 services.tlp.enable = true; 185 190