fix(web02): Use the correct fs configuration

This commit is contained in:
Tom Hubrecht 2024-06-26 22:25:40 +02:00
parent 83d8ff264d
commit 0be91e4803
3 changed files with 17 additions and 5 deletions

View file

@ -8,7 +8,6 @@ lib.extra.mkConfig {
enabledServices = [
# List of services to enable
"monitoring"
];
extraConfig = {
@ -17,7 +16,11 @@ lib.extra.mkConfig {
"sshd-timeout"
];
services.netbird.enable = true;
# Restrict access to this node
dgn-access-control.users.root = [ "thubrecht" ];
# Disable monitoring
dgn-node-monitoring.enable = false;
};
root = ./.;

View file

@ -17,6 +17,11 @@
"virtio_blk"
];
kernelModules = [ ];
luks.devices."main" = {
device = "/dev/disk/by-uuid/0092c3d6-97ce-40aa-9773-6b85fa0dfec8";
tryEmptyPassphrase = true;
};
};
kernelModules = [ "kvm-intel" ];
@ -25,13 +30,18 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/8725c242-144d-495b-8ce4-6f0cef7c8ee3";
fsType = "btrfs";
device = "/dev/disk/by-uuid/f7f94fec-cdd3-4e61-b93f-18447a395018";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/84F6-E7A3";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
};

View file

@ -1 +0,0 @@
{ dgn-node-monitoring.enable = false; }