mirror of https://git.jolheiser.com/dotnix.git
feat: cfg-playground
Signed-off-by: jolheiser <git@jolheiser.com>
parent
40aa972e6c
commit
c3474751ec
21
flake.lock
21
flake.lock
|
@ -106,6 +106,26 @@
|
||||||
"url": "https://git.jolheiser.com/cfg.git"
|
"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-compat": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -654,6 +674,7 @@
|
||||||
"bennet": "bennet",
|
"bennet": "bennet",
|
||||||
"blog": "blog",
|
"blog": "blog",
|
||||||
"cfg": "cfg",
|
"cfg": "cfg",
|
||||||
|
"cfg-playground": "cfg-playground",
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"foundry": "foundry",
|
"foundry": "foundry",
|
||||||
"ghostty": "ghostty",
|
"ghostty": "ghostty",
|
||||||
|
|
|
@ -72,6 +72,10 @@
|
||||||
url = "git+https://git.jolheiser.com/cfg.git";
|
url = "git+https://git.jolheiser.com/cfg.git";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
cfg-playground = {
|
||||||
|
url = "git+https://git.jolheiser.com/cfg-playground.git";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
ugit = {
|
ugit = {
|
||||||
url = "git+https://git.jolheiser.com/ugit.git";
|
url = "git+https://git.jolheiser.com/ugit.git";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -241,6 +245,7 @@
|
||||||
inputs.actual.nixosModules.default
|
inputs.actual.nixosModules.default
|
||||||
inputs.tsnet-serve.nixosModules.default
|
inputs.tsnet-serve.nixosModules.default
|
||||||
inputs.foundry.nixosModules.foundryvtt
|
inputs.foundry.nixosModules.foundryvtt
|
||||||
|
inputs.cfg-playground.nixosModules.default
|
||||||
./modules/tclip
|
./modules/tclip
|
||||||
./machines/dragonwell
|
./machines/dragonwell
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
services.cfg-playground = {
|
||||||
|
enable = true;
|
||||||
|
auth-key = "tskey-auth-ksTZtpeU1i11CNTRL-HmmWuAFifG3xxy8UDr1yG3UdjiYJ3mtGe"; # One-time key
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,6 +6,7 @@ in
|
||||||
imports = [
|
imports = [
|
||||||
./actual.nix
|
./actual.nix
|
||||||
./caddy.nix
|
./caddy.nix
|
||||||
|
./cfg.nix
|
||||||
./dex.nix
|
./dex.nix
|
||||||
./foundry.nix
|
./foundry.nix
|
||||||
./git-pr.nix
|
./git-pr.nix
|
||||||
|
|
Loading…
Reference in New Issue