Add morton

This commit is contained in:
Geoffrey Frogeye 2025-03-15 04:42:18 +01:00
parent 1ed4500cea
commit 8951a4fb43
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 14 additions and 0 deletions

View file

@ -220,6 +220,10 @@
system = "x86_64-linux";
modules = [ ./ludwig/standin.nix ];
};
nixosConfigurations.morton = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./morton/standin.nix ];
};
nixosConfigurations.sprinkles = lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./sprinkles/standin.nix ];

10
morton/standin.nix Normal file
View file

@ -0,0 +1,10 @@
{ ... }:
{
config = {
frogeye = {
name = "morton";
storageSize = "big";
syncthing.name = "Morton";
};
};
}