dotfiles/pindakaas/default.nix

13 lines
293 B
Nix
Raw Normal View History

2024-02-17 18:39:09 +01:00
{ pkgs, lib, config, ... }:
{
config = {
2024-02-17 19:05:50 +01:00
disko.devices.disk."${config.networking.hostName}".device = "/dev/disk/by-id/mmc-DA4064_0x931f080f";
2024-02-17 18:39:09 +01:00
networking.hostName = "pindakaas";
};
imports = [
2024-02-17 19:05:50 +01:00
../common/disko/single_uefi_btrfs.nix
2024-02-17 18:39:09 +01:00
./hardware.nix
./features.nix
];
}