backyard: move filesystems to their own file
This commit is contained in:
parent
a147a638e5
commit
5b1779eda2
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./filesystems.nix
|
||||
./fileserver.nix
|
||||
./jellyfin.nix
|
||||
./samba.nix
|
||||
|
|
|
@ -0,0 +1,50 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
# Core filesystems
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/75addc56-2a0d-431e-a0c5-f6ee0e370e61";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/610F-1EB7";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
|
||||
# ZFS filesystems
|
||||
fileSystems."/pool/tvb" =
|
||||
{ device = "pool/user/tvb";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/doc" =
|
||||
{ device = "pool/user/tvb/doc";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/game" =
|
||||
{ device = "pool/user/tvb/game";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/video" =
|
||||
{ device = "pool/user/tvb/video";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/audio" =
|
||||
{ device = "pool/user/tvb/audio";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/image" =
|
||||
{ device = "pool/user/tvb/image";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/cc464bb4-e1c8-46c0-adbb-ea1a3cfa5b03"; }
|
||||
];
|
||||
}
|
|
@ -13,51 +13,6 @@
|
|||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/75addc56-2a0d-431e-a0c5-f6ee0e370e61";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/610F-1EB7";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb" =
|
||||
{ device = "pool/user/tvb";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/doc" =
|
||||
{ device = "pool/user/tvb/doc";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/game" =
|
||||
{ device = "pool/user/tvb/game";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/video" =
|
||||
{ device = "pool/user/tvb/video";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/audio" =
|
||||
{ device = "pool/user/tvb/audio";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/pool/tvb/image" =
|
||||
{ device = "pool/user/tvb/image";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/cc464bb4-e1c8-46c0-adbb-ea1a3cfa5b03"; }
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
|
|
Loading…
Reference in New Issue