nix-config/hosts/octoprint/fs.nix
2024-07-26 22:12:48 +02:00

11 lines
213 B
Nix

{ lib, ... }:
{
fileSystems = lib.mkForce {
"/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
};
environment.persistence = lib.mkForce { };
}