{ pkgs, username, hostname, modulesPath, inputs, ... }: let in { imports = builtins.trace "${inputs.mysecrets}" [ (modulesPath + "/installer/scan/not-detected.nix") ./disk-config.nix ./hardware-configuration.nix ../../modules/core ../../modules/optionnal/hosts/${hostname}.nix ]; boot.kernelPackages = pkgs.linuxPackages_latest; time.timeZone = "Europe/Paris"; nix = { settings = { ## Enable flakes experimental-features = [ "nix-command" "flakes" ]; ## Users trusted to use flake command trusted-users = [ "root" "${username}" ]; }; }; services.openssh.enable = true; networking.hostName = "${hostname}"; system.stateVersion = "25.11"; }