devices.nas: fix nix march

This commit is contained in:
2025-04-30 17:20:26 +08:00
parent 88f43d1d77
commit 79a00787ca

View File

@@ -19,7 +19,12 @@ inputs:
};
initrd.sshd = {};
nixpkgs.march = "silvermont";
nix.substituters = [ "https://nix-store.pc.chn.moe" ];
nix =
{
substituters = [ "https://nix-store.pc.chn.moe" ];
# needed by mounted-store on pc
inherit (inputs.topInputs.self.nixosConfigurations.pc.config.nixos.system.nix) marches;
};
networking = {};
};
hardware = { cpus = [ "intel" ]; gpu.type = "intel"; };