generation 492 25.11.20250714.62e0f05

This commit is contained in:
2025-08-17 01:51:56 -04:00
parent 31058c7228
commit 78805b6429
5 changed files with 74 additions and 64 deletions

39
hosts/meta.nix Normal file
View File

@@ -0,0 +1,39 @@
{
config,
pkgs,
lib,
...
}: {
options = {
res = lib.mkOption {
type = lib.types.str;
default = "1920x1080";
description = "screen resolution";
};
};
# config = {
# age = {
# secrets = {
# zsh_remote = {
# file = ../../secrets/zsh_remote.age;
# owner = "synchronous";
# mode = "0400";
# };
# tailscale-rq = {
# file = ../../secrets/tailscale-rq.age;
# owner = "synchronous";
# mode = "0400";
# };
# ssh-pub = {
# file = ../../secrets/ssh-pub.age;
# owner = "synchronous";
# mode = "0400";
# };
# };
# secretsDir = "/home/synchronous/.agenix/agenix";
# secretsMountPoint = "/home/synchronous/.agenix/agenix.d";
# identityPaths = ["/home/synchronous/.ssh/id_ed25519"];
# };
# };
}