Geoffrey Frogeye
6444f8f517
While I might still bikeshed how the rest of the configuration is sourced, at least the import points should be stable.
12 lines
161 B
Nix
12 lines
161 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
../os
|
|
../pindakaas/hardware.nix
|
|
./disko.nix
|
|
./options.nix
|
|
];
|
|
|
|
networking.hostName = "pindakaas_sd";
|
|
}
|