refactor(hosts): rename jason to janet

This commit is contained in:
2026-03-28 10:41:33 +00:00
parent 3ede8cd2c2
commit 1bb97448a4
4 changed files with 10 additions and 10 deletions

28
modules/hosts/janet.nix Normal file
View File

@@ -0,0 +1,28 @@
{den, ...}: {
den.hosts.aarch64-darwin.janet.users.cschmatzler.aspect = "janet-cschmatzler";
den.aspects.janet-cschmatzler = {
includes = [
den.aspects.user-darwin-laptop
den.aspects.user-personal
];
};
den.aspects.janet.includes = [
(den.lib.perHost {
includes = [den.aspects.host-darwin-base];
darwin = {...}: {
networking.hostName = "janet";
networking.computerName = "janet";
sops.secrets.opencode-api-key = {
sopsFile = ../../secrets/opencode-api-key;
format = "binary";
owner = "cschmatzler";
path = "/run/secrets/opencode-api-key";
};
};
})
];
}