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.

39 lines
567 B
Nix

{ config
, lib
, pkgs
, ...
}:
let
cfg = config.x-banananetwork.improvedDefaults;
in
{
imports = [
./command-not-found.nix
./powertop-tlp.nix
./sshAuthorize.nix
./wayland.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.
'';
};
};
}