nix-config/hosts/octoprint/fs.nix

11 lines
213 B
Nix
Raw Normal View History

2024-07-26 22:12:48 +02:00
{ lib, ... }:
{
2024-07-12 13:27:08 +02:00
fileSystems = lib.mkForce {
"/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
};
2024-07-26 22:12:48 +02:00
environment.persistence = lib.mkForce { };
2024-07-12 13:27:08 +02:00
}