mirror of https://git.jolheiser.com/dotnix.git
parent
40aa972e6c
commit
adff3d1294
21
flake.lock
21
flake.lock
|
@ -106,6 +106,26 @@
|
|||
"url": "https://git.jolheiser.com/cfg.git"
|
||||
}
|
||||
},
|
||||
"cfg-playground": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1729196682,
|
||||
"narHash": "sha256-hLbpRWxw12/mqapicSSq1wxvNFfEKwEiXhzykpXWUDI=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "63c7a6886570f332ebb187e5a5580302603b4c4e",
|
||||
"revCount": 6,
|
||||
"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",
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
services.cfg-playground = {
|
||||
enable = true;
|
||||
verbose = true;
|
||||
auth-key = "tskey-auth-ksTZtpeU1i11CNTRL-HmmWuAFifG3xxy8UDr1yG3UdjiYJ3mtGe"; # One-time key
|
||||
};
|
||||
}
|
|
@ -6,6 +6,7 @@ in
|
|||
imports = [
|
||||
./actual.nix
|
||||
./caddy.nix
|
||||
./cfg.nix
|
||||
./dex.nix
|
||||
./foundry.nix
|
||||
./git-pr.nix
|
||||
|
|
Loading…
Reference in New Issue