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.
36 lines
503 B
Nix
36 lines
503 B
Nix
3 months ago
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}:
|
||
|
let
|
||
|
cfg = config.x-banananetwork.improvedDefaults;
|
||
|
in
|
||
|
{
|
||
|
|
||
|
|
||
|
imports = [
|
||
|
./command-not-found.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.
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|