This is not the final deployment, but rather the base for raven on a different system to test things before deploying to production.
14 lines
254 B
Nix
14 lines
254 B
Nix
{ ... }@inputs:
|
|
let
|
|
hardware = inputs.nixos-hardware.nixosModules;
|
|
in
|
|
{
|
|
raven = {
|
|
targetHost = "10.105.255.242"; # FIXME
|
|
system = "x86_64-linux";
|
|
extraModules = [
|
|
hardware.common-cpu-intel
|
|
hardware.common-pc-ssd
|
|
];
|
|
};
|
|
}
|