This commit is contained in:
2026-05-29 20:54:22 -05:00
parent 5cd20d6a35
commit 5f994ccf0a
9 changed files with 378 additions and 23 deletions
+13 -1
View File
@@ -1,7 +1,9 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
hyprland.url = "github:hyprwm/Hyprland";
hermes-agent.url = "github:NousResearch/hermes-agent";
hjem = {
url = "github:feel-co/hjem";
@@ -17,10 +19,16 @@
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
};
};
outputs =
{ self, nixpkgs, ... }@inputs:
{
self,
nixpkgs,
hermes-agent,
...
}@inputs:
let
system = "x86_64-linux";
username = "poslop";
@@ -43,6 +51,10 @@
nixos-vm2 = mkHost "nixos-vm2" [ ./hosts/nixos-vm2/configuration.nix ];
qemu-vm = mkHost "qemu-vm" [ ./hosts/qemu-vm/configuration.nix ];
goyplex-vm = mkHost "goyplex-vm" [ ./hosts/goyplex-vm/configuration.nix ];
hermes-vm = mkHost "hermes-vm" [
hermes-agent.nixosModules.default
./hosts/hermes-vm/configuration.nix
];
};
};
}