diff --git a/flake.lock b/flake.lock index a6fc1fd..b030d1a 100644 --- a/flake.lock +++ b/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", diff --git a/flake.nix b/flake.nix index 68a6cc1..63a03b6 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; diff --git a/machines/dragonwell/cfg.nix b/machines/dragonwell/cfg.nix new file mode 100644 index 0000000..9e87a2d --- /dev/null +++ b/machines/dragonwell/cfg.nix @@ -0,0 +1,7 @@ +{ + services.cfg-playground = { + enable = true; + verbose = true; + auth-key = "tskey-auth-ksTZtpeU1i11CNTRL-HmmWuAFifG3xxy8UDr1yG3UdjiYJ3mtGe"; # One-time key + }; +} diff --git a/machines/dragonwell/default.nix b/machines/dragonwell/default.nix index bde6f22..128b00d 100644 --- a/machines/dragonwell/default.nix +++ b/machines/dragonwell/default.nix @@ -6,6 +6,7 @@ in imports = [ ./actual.nix ./caddy.nix + ./cfg.nix ./dex.nix ./foundry.nix ./git-pr.nix