2023-11-28 20:53:18 +01:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
2023-11-29 11:39:58 +01:00
|
|
|
# START DEBUG
|
|
|
|
# ../os
|
|
|
|
# ./options.nix
|
|
|
|
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22.tar.gz"}/module.nix"
|
|
|
|
# END DEBUG
|
2023-11-28 20:53:18 +01:00
|
|
|
../pindakaas/hardware.nix
|
|
|
|
./disko.nix
|
|
|
|
];
|
|
|
|
|
2023-11-29 11:39:58 +01:00
|
|
|
nixpkgs.config.allowUnfree = true; # DEBUG
|
2023-11-28 20:53:18 +01:00
|
|
|
networking.hostName = "pindakaas_sd";
|
|
|
|
}
|