Add a direct mount of the Btrfs on Jeremiah
Add a mountpoint for the root Btrfs volume on Jeremiah so that the root of the volume can be accessed Also, create and mount a PVE subvol for fiddling around with the Btrfs suport in PVE
This commit is contained in:
@@ -26,7 +26,10 @@
|
|||||||
|
|
||||||
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
||||||
|
|
||||||
networking.hostName = "exodus";
|
networking = {
|
||||||
|
hostName = "exodus";
|
||||||
|
networkmanager.enable = lib.mkForce true;
|
||||||
|
};
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
podman.enable = true;
|
podman.enable = true;
|
||||||
|
|||||||
@@ -42,6 +42,15 @@
|
|||||||
options = [ "subvol=var" ];
|
options = [ "subvol=var" ];
|
||||||
device = "/dev/nvme0n1p1";
|
device = "/dev/nvme0n1p1";
|
||||||
};
|
};
|
||||||
|
"/var/pve" = {
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=pve" ];
|
||||||
|
device = "/dev/nvme0n1p1";
|
||||||
|
};
|
||||||
|
"/btrfs" = {
|
||||||
|
fsType = "btrfs";
|
||||||
|
device = "/dev/nvme0n1p1";
|
||||||
|
};
|
||||||
"/media/proxmox" = {
|
"/media/proxmox" = {
|
||||||
device = "10.42.1.4:/volume1/proxmox";
|
device = "10.42.1.4:/volume1/proxmox";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{ pkgs, config, ... }:
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
@@ -21,6 +26,7 @@
|
|||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "jude";
|
hostName = "jude";
|
||||||
|
networkmanager.enable = lib.mkForce true;
|
||||||
enableIPv6 = false;
|
enableIPv6 = false;
|
||||||
interfaces.enp12s0.useDHCP = true;
|
interfaces.enp12s0.useDHCP = true;
|
||||||
firewall = {
|
firewall = {
|
||||||
|
|||||||
Reference in New Issue
Block a user