9 lines
191 B
Nix
9 lines
191 B
Nix
{ self, inputs, ... }: {
|
|
|
|
flake.nixosModules.fioHardware = { config, lib, pkgs, modulesPath, ... }: {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
};
|
|
}
|