Compare commits

..

No commits in common. "5bda7a8481d577210a096f48944577168e2c5f12" and "4532cb43fa5692dbec0c30388db880b59f776cde" have entirely different histories.

3 changed files with 21 additions and 23 deletions

View file

@ -1,6 +1,6 @@
#!/bin/sh
file="$(mktemp)"
file="$(mktemp --tmpdir=/dev/shm).php"
cat - >"$file"
./vendor/bin/pint --quiet "$file"
cat "$file"

View file

@ -12,14 +12,6 @@
"--volumes"
];
};
daemon.settings = {
# needed by bitbucket runner ???
log-driver = "json-file";
log-opts = {
max-size = "10m";
max-file = "3";
};
};
};
programs.extra-container.enable = true;

View file

@ -1,8 +1,16 @@
{
config,
pkgs,
lib,
...
}:
let
inherit (config.my) username mail;
in
{
config = {
programs.ssh = {
enable = true;
matchBlocks = {
programs.ssh.enable = true;
programs.ssh.matchBlocks = {
monolith = {
user = "lelgenio";
hostname = "monolith.lelgenio.com";
@ -14,7 +22,5 @@
port = 9022;
};
};
includes = [ "~/Wopus/.ssh.config" ];
};
};
}