Compare commits

...

1 Commits

Author SHA1 Message Date
jolheiser c3474751ec
feat: cfg-playground
Signed-off-by: jolheiser <git@jolheiser.com>
2024-10-17 11:00:07 -05:00
4 changed files with 33 additions and 0 deletions

View File

@ -106,6 +106,26 @@
"url": "https://git.jolheiser.com/cfg.git"
}
},
"cfg-playground": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1729180527,
"narHash": "sha256-dQp4HCRn6aLyJNXuMS+YDmPSN3D1k13ncO/z80AmBM0=",
"ref": "refs/heads/main",
"rev": "f5c00b190ac361db2d0b6a91f271b28281b382ae",
"revCount": 4,
"type": "git",
"url": "https://git.jolheiser.com/cfg-playground.git"
},
"original": {
"type": "git",
"url": "https://git.jolheiser.com/cfg-playground.git"
}
},
"flake-compat": {
"flake": false,
"locked": {
@ -654,6 +674,7 @@
"bennet": "bennet",
"blog": "blog",
"cfg": "cfg",
"cfg-playground": "cfg-playground",
"flake-utils": "flake-utils",
"foundry": "foundry",
"ghostty": "ghostty",

View File

@ -72,6 +72,10 @@
url = "git+https://git.jolheiser.com/cfg.git";
inputs.nixpkgs.follows = "nixpkgs";
};
cfg-playground = {
url = "git+https://git.jolheiser.com/cfg-playground.git";
inputs.nixpkgs.follows = "nixpkgs";
};
ugit = {
url = "git+https://git.jolheiser.com/ugit.git";
inputs.nixpkgs.follows = "nixpkgs";
@ -241,6 +245,7 @@
inputs.actual.nixosModules.default
inputs.tsnet-serve.nixosModules.default
inputs.foundry.nixosModules.foundryvtt
inputs.cfg-playground.nixosModules.default
./modules/tclip
./machines/dragonwell
];

View File

@ -0,0 +1,6 @@
{
services.cfg-playground = {
enable = true;
auth-key = "tskey-auth-ksTZtpeU1i11CNTRL-HmmWuAFifG3xxy8UDr1yG3UdjiYJ3mtGe"; # One-time key
};
}

View File

@ -6,6 +6,7 @@ in
imports = [
./actual.nix
./caddy.nix
./cfg.nix
./dex.nix
./foundry.nix
./git-pr.nix