Compare commits
No commits in common. "5bda7a8481d577210a096f48944577168e2c5f12" and "4532cb43fa5692dbec0c30388db880b59f776cde" have entirely different histories.
5bda7a8481
...
4532cb43fa
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
file="$(mktemp)"
|
file="$(mktemp --tmpdir=/dev/shm).php"
|
||||||
cat - >"$file"
|
cat - >"$file"
|
||||||
./vendor/bin/pint --quiet "$file"
|
./vendor/bin/pint --quiet "$file"
|
||||||
cat "$file"
|
cat "$file"
|
||||||
|
|
|
@ -12,14 +12,6 @@
|
||||||
"--volumes"
|
"--volumes"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
daemon.settings = {
|
|
||||||
# needed by bitbucket runner ???
|
|
||||||
log-driver = "json-file";
|
|
||||||
log-opts = {
|
|
||||||
max-size = "10m";
|
|
||||||
max-file = "3";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.extra-container.enable = true;
|
programs.extra-container.enable = true;
|
||||||
|
|
34
user/ssh.nix
34
user/ssh.nix
|
@ -1,20 +1,26 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (config.my) username mail;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
config = {
|
config = {
|
||||||
programs.ssh = {
|
programs.ssh.enable = true;
|
||||||
enable = true;
|
programs.ssh.matchBlocks = {
|
||||||
matchBlocks = {
|
monolith = {
|
||||||
monolith = {
|
user = "lelgenio";
|
||||||
user = "lelgenio";
|
hostname = "monolith.lelgenio.com";
|
||||||
hostname = "monolith.lelgenio.com";
|
port = 9022;
|
||||||
port = 9022;
|
};
|
||||||
};
|
phantom = {
|
||||||
phantom = {
|
user = "root";
|
||||||
user = "root";
|
hostname = "phantom.lelgenio.com";
|
||||||
hostname = "phantom.lelgenio.com";
|
port = 9022;
|
||||||
port = 9022;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
includes = [ "~/Wopus/.ssh.config" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue