Home : Add drives.
This commit is contained in:
parent
7605f0fceb
commit
dd2e0ad7cf
|
@ -16,13 +16,28 @@
|
||||||
|
|
||||||
# Network.
|
# Network.
|
||||||
networking.hostName = "home";
|
networking.hostName = "home";
|
||||||
|
networking.extraHosts = ''
|
||||||
|
10.1.0.2 git.voronind.com
|
||||||
|
'';
|
||||||
|
|
||||||
# Filesystems.
|
# Filesystems.
|
||||||
# fileSystems."/storage/cold_1" = {
|
fileSystems."/storage/cold_1" = {
|
||||||
# device = "/dev/storage/cold_1";
|
device = "/dev/storage/cold_1";
|
||||||
# fsType = "ext4";
|
fsType = "ext4";
|
||||||
# options = [ "noauto" "nofail" ];
|
options = [ "noauto" "nofail" ];
|
||||||
# };
|
};
|
||||||
|
|
||||||
|
fileSystems."/storage/cold_2" = {
|
||||||
|
device = "/dev/storage/cold_2";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [ "noauto" "nofail" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/storage/hot" = {
|
||||||
|
device = "/dev/storage/hot";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [ "nofail" ];
|
||||||
|
};
|
||||||
|
|
||||||
# Do not touch ever.
|
# Do not touch ever.
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
Reference in a new issue