mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-22 07:58:49 +01:00
local changes
This commit is contained in:
parent
53a4df4b2d
commit
7fc629055b
2 changed files with 30 additions and 21 deletions
|
@ -100,7 +100,7 @@ in
|
||||||
[
|
[
|
||||||
(nixGL insomnia)
|
(nixGL insomnia)
|
||||||
(nixGL comma)
|
(nixGL comma)
|
||||||
(nixGL processing)
|
# (nixGL processing)
|
||||||
(nixGL scrcpy)
|
(nixGL scrcpy)
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
|
|
|
@ -55,37 +55,46 @@ let
|
||||||
PubkeyAcceptedKeyTypes = "+ssh-rsa";
|
PubkeyAcceptedKeyTypes = "+ssh-rsa";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"flanders" = {
|
||||||
|
identityFile = "~/.ssh/id_thilo-billerbeck-com";
|
||||||
|
user = "thilo";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
catchAlls = builtins.listToAttrs (
|
catchAlls = builtins.listToAttrs (
|
||||||
builtins.map (host: {
|
builtins.map
|
||||||
name = "*.${host}";
|
(host: {
|
||||||
value = {
|
name = "*.${host}";
|
||||||
identityFile = "~/.ssh/id_thilo-billerbeck-com";
|
value = {
|
||||||
user = "root";
|
identityFile = "~/.ssh/id_thilo-billerbeck-com";
|
||||||
};
|
user = "root";
|
||||||
}) ownDomains
|
};
|
||||||
|
})
|
||||||
|
ownDomains
|
||||||
);
|
);
|
||||||
hostnameAliasses = builtins.listToAttrs (
|
hostnameAliasses = builtins.listToAttrs (
|
||||||
builtins.map (host: {
|
builtins.map
|
||||||
name = "${host}";
|
(host: {
|
||||||
value = {
|
name = "${host}";
|
||||||
hostname = "${host}.thilo-billerbeck.com";
|
value = {
|
||||||
};
|
hostname = "${host}.thilo-billerbeck.com";
|
||||||
}) thiloBillerbeckHosts
|
};
|
||||||
|
})
|
||||||
|
thiloBillerbeckHosts
|
||||||
);
|
);
|
||||||
buildersCCCDA = builtins.listToAttrs (
|
buildersCCCDA = builtins.listToAttrs (
|
||||||
builtins.map (host: {
|
builtins.map
|
||||||
name = "build${host}.darmstadt.ccc.de";
|
(host: {
|
||||||
value = {
|
name = "build${host}.darmstadt.ccc.de";
|
||||||
user = "avocadoom";
|
value = {
|
||||||
|
user = "avocadoom";
|
||||||
identityFile = "~/.ssh/id_darmstadt-ccc-de";
|
identityFile = "~/.ssh/id_darmstadt-ccc-de";
|
||||||
};
|
};
|
||||||
}) ["1" "2" "3" "4"]
|
}) [ "1" "2" "3" "4" ]
|
||||||
);
|
);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
matchBlocks = manualMatchBlocks // catchAlls // hostnameAliasses // buildersCCCDA;
|
matchBlocks = manualMatchBlocks // catchAlls // hostnameAliasses;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue