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