20 lines
289 B
Nix
20 lines
289 B
Nix
# /etc/nixos/configuration.nix
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
pkgsUnstable,
|
|
...
|
|
}:
|
|
|
|
{
|
|
networking.hostName = hostname;
|
|
|
|
imports = [
|
|
/etc/nixos/hardware-configuration.nix
|
|
/etc/nixos/base/base.nix
|
|
/etc/nixos/roles/roles.nix
|
|
/etc/nixos/hosts/${hostName}/default.nix
|
|
];
|
|
}
|