srx-platform-nix/hosts/srxfdm00/hardware.nix

12 lines
194 B
Nix
Raw Normal View History

2024-07-04 13:47:18 +02:00
{ self, ... }:
{
imports = [
self.nixosModules.hardware-rpi4
];
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
}