Update warsaw disks
This commit is contained in:
parent
dab80e8dba
commit
4403655291
1 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
# Disks are sdb and sdc
|
|
||||||
# https://github.com/nix-community/disko/blob/master/example/boot-raid1.nix
|
# https://github.com/nix-community/disko/blob/master/example/boot-raid1.nix
|
||||||
imports = [ ../../common/services/snapper.nix ];
|
imports = [ ../../common/services/snapper.nix ];
|
||||||
|
|
||||||
|
@ -15,9 +14,9 @@
|
||||||
|
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
sdb = {
|
sda = {
|
||||||
type = "disk";
|
type = "disk";
|
||||||
device = "/dev/sdb";
|
device = "/dev/sda";
|
||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
|
@ -44,9 +43,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sdc = {
|
sdb = {
|
||||||
type = "disk";
|
type = "disk";
|
||||||
device = "/dev/sdc";
|
device = "/dev/sdb";
|
||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
|
|
Loading…
Reference in a new issue