srx-platform-nix/hosts/srxfdm00/hardware.nix
Sebastian Wendel b910dc465e first commit
2024-07-04 13:47:18 +02:00

12 lines
194 B
Nix

{ self, ... }:
{
imports = [
self.nixosModules.hardware-rpi4
];
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
}