nix-config/hosts/rpi-kodi/default.nix
2024-10-02 13:56:59 +02:00

25 lines
414 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
imports = [
# Include the results of the hardware scan.
# ./hardware-configuration.nix
inputs.disko.nixosModules.disko
./disko.nix
];
networking.hostName = "rpi-kodi"; # Define your hostname.
# home-manager = {
# extraSpecialArgs = {
# inherit inputs;
# };
# users = {
# "krop" = import ../../users/krop;
# };
# };
}