nix-gscheits/machines/default.nix
Simon Bruder 4a0dbac108 machines/raven: init
This is not the final deployment, but rather the base for raven on a
different system to test things before deploying to production.
2021-07-18 13:55:11 +02:00

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
];
};
}