Add morton
This commit is contained in:
parent
1ed4500cea
commit
8951a4fb43
2 changed files with 14 additions and 0 deletions
|
@ -220,6 +220,10 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./ludwig/standin.nix ];
|
modules = [ ./ludwig/standin.nix ];
|
||||||
};
|
};
|
||||||
|
nixosConfigurations.morton = lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [ ./morton/standin.nix ];
|
||||||
|
};
|
||||||
nixosConfigurations.sprinkles = lib.nixosSystem {
|
nixosConfigurations.sprinkles = lib.nixosSystem {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
modules = [ ./sprinkles/standin.nix ];
|
modules = [ ./sprinkles/standin.nix ];
|
||||||
|
|
10
morton/standin.nix
Normal file
10
morton/standin.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
frogeye = {
|
||||||
|
name = "morton";
|
||||||
|
storageSize = "big";
|
||||||
|
syncthing.name = "Morton";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue