l 1 shodan: reinstall with btrfs

This commit is contained in:
lassulus 2017-01-09 17:12:50 +01:00
parent d8a52b7844
commit 4097f51671

View File

@ -59,17 +59,13 @@ with import <stockholm/lib>;
fileSystems = { fileSystems = {
"/" = { "/" = {
device = "/dev/pool/nix"; device = "/dev/pool/nix";
fsType = "ext4"; fsType = "btrfs";
}; };
"/boot" = { "/boot" = {
device = "/dev/sda1"; device = "/dev/sda1";
}; };
"/home/lass" = {
device = "/dev/pool/home-lass";
fsType = "ext4";
};
"/tmp" = { "/tmp" = {
device = "tmpfs"; device = "tmpfs";
fsType = "tmpfs"; fsType = "tmpfs";
@ -77,7 +73,7 @@ with import <stockholm/lib>;
}; };
"/bku" = { "/bku" = {
device = "/dev/pool/bku"; device = "/dev/pool/bku";
fsType = "ext4"; fsType = "btrfs";
}; };
}; };