migrate from SATA to NVMe #1

Merged
illustris merged 2 commits from new-disk into master 2022-11-09 04:16:55 +00:00
3 changed files with 10 additions and 11 deletions
Showing only changes of commit 2566c3b750 - Show all commits

View File

@ -32,7 +32,7 @@ in
};
supportedFilesystems = [ "zfs" "ntfs" ];
zfs.devNodes = "/dev/disk/by-partuuid";
zfs.devNodes = "/dev/disk/by-path";
};
time.timeZone = "Asia/Kolkata";

View File

@ -3,7 +3,6 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# nixpkgs1.url = "/home/illustris/src/nixpkgs";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";

View File

@ -15,47 +15,47 @@
fileSystems = {
"/" = {
device = "ssd/rootfs";
device = "desktop-nvme/rootfs";
fsType = "zfs";
};
"/home" = {
device = "ssd/home";
device = "desktop-nvme/home";
fsType = "zfs";
};
"/nix" = {
device = "ssd/nix";
device = "desktop-nvme/nix";
fsType = "zfs";
};
"/root" = {
device = "ssd/home/root";
device = "desktop-nvme/home/root";
fsType = "zfs";
};
"/tmp" = {
device = "ssd/tmp";
device = "desktop-nvme/tmp";
fsType = "zfs";
};
"/var" = {
device = "ssd/var";
device = "desktop-nvme/var";
fsType = "zfs";
};
"/var/lib" = {
device = "ssd/var/lib";
device = "desktop-nvme/var/lib";
fsType = "zfs";
};
"/var/log" = {
device = "ssd/var/log";
device = "desktop-nvme/var/log";
fsType = "zfs";
};
"/boot" = {
device = "/dev/disk/by-uuid/453B-D3CD";
device = "/dev/disk/by-uuid/9807-6F26";
fsType = "vfat";
};
};