Add nixos-hardware

This commit is contained in:
Jakob Lechner 2024-06-13 13:08:31 +02:00
parent d60fad5545
commit 650bcbb2de
3 changed files with 27 additions and 1 deletions

View file

@ -1,4 +1,7 @@
{ ... }@inputs:
let
hardware = inputs.nixos-hardware.nixosModules;
in
{
aluminium = {
targetHost = "192.168.0.1";
@ -30,5 +33,8 @@
copper = {
system = "x86_64-linux";
targetHost = "copper.lan.bw.jalr.de";
extraModules = [
hardware.framework-16-7040-amd
];
};
}