Compare commits
No commits in common. "2444ac46a0f0c41560558cb194a98e093a8466e3" and "6088d9f9c9f6d845e9b192a7b9d53c7a3cca847e" have entirely different histories.
2444ac46a0
...
6088d9f9c9
@ -26,12 +26,3 @@ 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,6 +220,8 @@ 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
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -334,7 +336,6 @@ 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,16 +194,10 @@ 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 = {
|
KeepAlive = true;
|
||||||
PathState = {
|
|
||||||
"/nix/store" = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
RunAtLoad = true;
|
RunAtLoad = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -43,11 +43,7 @@ with lib;
|
|||||||
WatchPaths= [
|
WatchPaths= [
|
||||||
"/etc/${config.environment.etc."vector.yaml".target}"
|
"/etc/${config.environment.etc."vector.yaml".target}"
|
||||||
];
|
];
|
||||||
KeepAlive = {
|
KeepAlive = true;
|
||||||
PathState = {
|
|
||||||
"/nix/store" = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
RunAtLoad = true;
|
RunAtLoad = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user