Evie Litherland-Smith
52ff1c36a3
Move root user home-config into home/default.nix so that it's used by all Removed personal/work specific things from root user
18 lines
346 B
Nix
18 lines
346 B
Nix
{lib, ...}: {
|
|
imports = [./default.nix];
|
|
programs.ssh.matchBlocks = {
|
|
"vanguard" = {
|
|
user = "xenia";
|
|
hostname = "192.168.1.166";
|
|
};
|
|
"ionos" = {
|
|
user = "root";
|
|
hostname = "77.68.67.133";
|
|
};
|
|
"git.xenia.me.uk" = lib.hm.dag.entryBefore ["git*"] {
|
|
user = "gitea";
|
|
port = 2222;
|
|
};
|
|
};
|
|
}
|