25 lines
414 B
Nix
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;
|
|
# };
|
|
# };
|
|
}
|