flake.nix: add app-01 config

This commit is contained in:
2025-08-30 22:01:24 -07:00
parent 79ba37f0af
commit 4f52d373d9

View File

@@ -37,6 +37,33 @@
}; };
nixosConfigurations = { nixosConfigurations = {
app-01 = lib.nixosSystem {
specialArgs = {
inherit inputs pkgsUnstable;
hostname = "app-01";
stateversion = "25.05";
};
modules = [
./configuration.nix
inputs.comin.nixosModules.comin
(
{ ... }:
{
services.comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://git.its-et.me/etorres/nixos.git";
branches.main.name = "main";
}
];
};
}
)
];
};
borg-01 = lib.nixosSystem { borg-01 = lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs pkgsUnstable; inherit inputs pkgsUnstable;