You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
526 B
Nix
37 lines
526 B
Nix
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.x-banananetwork.improvedDefaults;
|
|
in
|
|
{
|
|
|
|
|
|
imports = [
|
|
./command-not-found.nix
|
|
./powertop-tlp.nix
|
|
];
|
|
|
|
|
|
options = {
|
|
|
|
x-banananetwork.improvedDefaults = {
|
|
|
|
enable = lib.mkEnableOption ''
|
|
improved defaults for nixpkgs NixOS modules.
|
|
|
|
Defaults are only changed conditionally,
|
|
e.g. modules, which are enabled by default,
|
|
get automatically disabled
|
|
if another incompatible module is enabled.
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
}
|