From 37b0aee3d2ccaa48cd74dd4c2c7505992f18b2c6 Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Sun, 4 Aug 2024 15:15:56 +0200 Subject: [PATCH] default hardware --- nixos/configs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configs/default.nix b/nixos/configs/default.nix index 4802a95..81bbfc2 100644 --- a/nixos/configs/default.nix +++ b/nixos/configs/default.nix @@ -23,6 +23,6 @@ in nova-ai = novaConfig (with mods; [ ivand ai ]); install-iso = configWithModules { modules = (with mods; [ grub base shell wireless ]); }; vps = configWithModules { modules = (with mods; [ base shell security vps ]); }; - stara-miner = configWithModules { modules = (with mods; [ base shell security monero-miner ]); }; + stara-miner = configWithModules { hardware = import /etc/nixos/hardware-configuration.nix; modules = (with mods; [ base shell security monero-miner ]); }; }; }