Add module for machines located in Spain (keyboard and timezone) using tags
Some checks failed
Flake check / check (push) Failing after 5m10s
Update `flake.lock` / update_lockfile (push) Successful in 6m2s

This commit is contained in:
Pedro Rey Anca 2025-09-06 11:16:35 +02:00
parent 72e1c90b63
commit d04dad50c7
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A
2 changed files with 13 additions and 0 deletions

View file

@ -4,6 +4,8 @@
inventory.machines = {
aresix = {
deploy.targetHost = "root@[4a6:fed0:59ba:507d:baab:15f3:846d:ead4]";
tags = ["server" "headless" "spain"];
};
};
};
@ -37,6 +39,12 @@
roles.default.extraModules = [./users/pedro/home.nix];
};
spain-located = {
module.name = "importer";
roles.default.tags.desktop = {};
roles.default.extraModules = ["modules/spain.nix"];
};
# Docs: https://docs.clan.lol/reference/clanServices/mycelium/
mycelium = {
roles.peer.tags.all = {};

5
modules/spain.nix Normal file
View file

@ -0,0 +1,5 @@
{...}: {
time.timeZone = "Europe/Madrid";
console.keyMap = "es";
i18n.defaultLocale = "en_US.UTF-8";
}