adding beszel agents

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-11-18 23:25:21 -06:00
parent 53bb2eda92
commit 47ef50388a
9 changed files with 280 additions and 11 deletions

37
hosts/lio/flake.lock generated
View file

@ -25,6 +25,36 @@
"type": "github"
}
},
"beszel": {
"inputs": {
"beszel-nixpkgs": "beszel-nixpkgs"
},
"locked": {
"path": "../../flakes/beszel",
"type": "path"
},
"original": {
"path": "../../flakes/beszel",
"type": "path"
},
"parent": []
},
"beszel-nixpkgs": {
"locked": {
"lastModified": 1763421233,
"narHash": "sha256-Stk9ZYRkGrnnpyJ4eqt9eQtdFWRRIvMxpNRf4sIegnw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "89c2b2330e733d6cdb5eae7b899326930c2c0648",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"common": {
"locked": {
"path": "../../flakes/common",
@ -189,11 +219,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1760524057,
"narHash": "sha256-EVAqOteLBFmd7pKkb0+FIUyzTF61VKi7YmvP1tw4nEw=",
"lastModified": 1763421233,
"narHash": "sha256-Stk9ZYRkGrnnpyJ4eqt9eQtdFWRRIvMxpNRf4sIegnw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "544961dfcce86422ba200ed9a0b00dd4b1486ec5",
"rev": "89c2b2330e733d6cdb5eae7b899326930c2c0648",
"type": "github"
},
"original": {
@ -1138,6 +1168,7 @@
},
"root": {
"inputs": {
"beszel": "beszel",
"common": "common",
"flatpaks": "flatpaks",
"home-manager": "home-manager",

View file

@ -12,6 +12,8 @@
secrets.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/secrets";
# flatpaks.url = "path:../../flakes/flatpaks";
flatpaks.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/flatpaks";
beszel.url = "path:../../flakes/beszel";
# beszel.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/beszel";
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
};
@ -23,6 +25,7 @@
common,
secrets,
flatpaks,
beszel,
ros_neovim,
...
}@inputs:
@ -74,6 +77,17 @@
common.nixosModules.tty_caps_esc
common.nixosModules.zsh
beszel.nixosModules.agent
(
{ ... }:
{
beszelAgent = {
listen = "100.64.0.1:45876";
token = "20208198-87c2-4bd1-ab09-b97c3b9c6a6e";
};
}
)
./configuration.nix
./hardware-configuration.nix
(import ./containers.nix { inherit inputs; })