Fix module path and disk device
This commit is contained in:
parent
fd16e4e6e1
commit
f74733f4a4
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
{ modulesPath, ... }:
|
{ modulesPath, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
"${modulesPath}/nixos/virtualisation/qemu-guest-agent.nix"
|
"${modulesPath}/virtualisation/qemu-guest-agent.nix"
|
||||||
|
|
||||||
nixos-hardware.nixosModules.common-cpu-intel
|
nixos-hardware.nixosModules.common-cpu-intel
|
||||||
nixos-hardware.nixosModules.common-pc-ssd
|
nixos-hardware.nixosModules.common-pc-ssd
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
sdb = {
|
sdb = {
|
||||||
device = "/dev/sdb";
|
device = "/dev/vdb";
|
||||||
type = "disk";
|
type = "disk";
|
||||||
content = {
|
content = {
|
||||||
type = "table";
|
type = "table";
|
||||||
|
|
Loading…
Reference in a new issue