19 lines
324 B
Nix
19 lines
324 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
hostname,
|
|
modulesPath,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
system.stateVersion = "25.11";
|
|
|
|
imports = builtins.trace "${inputs.mysecrets}" [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
./hardware-configuration.nix
|
|
../../modules/core
|
|
../../modules/optionnals/hosts/${hostname}.nix
|
|
];
|
|
}
|