Geoffrey Frogeye
8edb670486
I could split this commit in more but I won't. The first commit in this repository said it would be the last legible one, and I haven't followed that, so YOLO.
13 lines
279 B
Nix
13 lines
279 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
config = {
|
|
disko.devices.disk."${config.frogeye.name}".device = "/dev/disk/by-id/mmc-DA4064_0x931f080f";
|
|
frogeye.name = "pindakaas";
|
|
};
|
|
imports = [
|
|
../common/disko/single_uefi_btrfs.nix
|
|
./hardware.nix
|
|
./features.nix
|
|
];
|
|
}
|