Compare commits
4 Commits
6088d9f9c9
...
2444ac46a0
Author | SHA1 | Date | |
---|---|---|---|
2444ac46a0 | |||
6ad184138c | |||
a2edf057a1 | |||
b38ac9f632 |
@ -26,3 +26,12 @@ function wrkspc() {
|
|||||||
local session=$(basename $wd)
|
local session=$(basename $wd)
|
||||||
tmux new -A -s $session
|
tmux new -A -s $session
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function kill_service_on_port() {
|
||||||
|
local port=$1
|
||||||
|
echo killings pids for port ${port}
|
||||||
|
for p in $(sudo lsof -nP -iTCP -sTCP:LISTEN | grep ${port} | awk '{ print $2 }'); do
|
||||||
|
echo killing pid: $p;
|
||||||
|
kill -9 $p;
|
||||||
|
done
|
||||||
|
}
|
||||||
|
@ -220,8 +220,6 @@ EOF";
|
|||||||
lua-language-server
|
lua-language-server
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
dasht
|
dasht
|
||||||
# TODO(jwall): This is no longer provided for darwin in nixpkgs
|
|
||||||
#dbeaver-bin
|
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -336,6 +334,7 @@ EOF";
|
|||||||
vector
|
vector
|
||||||
victoriametrics
|
victoriametrics
|
||||||
# TODO add sonic-pi here if it supports the arch
|
# TODO add sonic-pi here if it supports the arch
|
||||||
|
unstablePkgs.dbeaver-bin
|
||||||
])
|
])
|
||||||
#++ (with pkgs.ocamlPackages; [
|
#++ (with pkgs.ocamlPackages; [
|
||||||
# dune_3
|
# dune_3
|
||||||
|
@ -194,10 +194,16 @@ with lib;
|
|||||||
"--"
|
"--"
|
||||||
"${pkgs.durnitisp}/bin/durnitisp"
|
"${pkgs.durnitisp}/bin/durnitisp"
|
||||||
"--listenHost=${config.services.durnitisp.listen}"
|
"--listenHost=${config.services.durnitisp.listen}"
|
||||||
|
"--stunHosts=stun.ekiga.net:3478,stun.schlund.de:3478,stun.voipbuster.com:3478,stun.voipstunt.com:3478,stun.xten.com:3478"
|
||||||
|
"--pingHosts=google.com,prod.actual.battle.net"
|
||||||
];
|
];
|
||||||
#StandardErrorPath = "/var/log/clio.durnitisp.err";
|
#StandardErrorPath = "/var/log/clio.durnitisp.err";
|
||||||
#StandardOutPath = "/var/log/clio.durnitisp.out";
|
#StandardOutPath = "/var/log/clio.durnitisp.out";
|
||||||
KeepAlive = true;
|
KeepAlive = {
|
||||||
|
PathState = {
|
||||||
|
"/nix/store" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
RunAtLoad = true;
|
RunAtLoad = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -43,7 +43,11 @@ with lib;
|
|||||||
WatchPaths= [
|
WatchPaths= [
|
||||||
"/etc/${config.environment.etc."vector.yaml".target}"
|
"/etc/${config.environment.etc."vector.yaml".target}"
|
||||||
];
|
];
|
||||||
KeepAlive = true;
|
KeepAlive = {
|
||||||
|
PathState = {
|
||||||
|
"/nix/store" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
RunAtLoad = true;
|
RunAtLoad = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user