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
527 B
Nix
36 lines
527 B
Nix
3 months ago
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, ...
|
||
|
|
||
|
}: {
|
||
|
|
||
|
|
||
|
imports = [
|
||
|
./base.nix
|
||
|
./extension.nix
|
||
|
];
|
||
|
|
||
|
|
||
|
options = {
|
||
|
|
||
|
x-banananetwork.frontend = {
|
||
|
|
||
|
enable = lib.mkEnableOption ''
|
||
|
settings for frontend configuration in Home-Manager
|
||
|
'';
|
||
|
|
||
|
nixosModuleCompat = lib.mkEnableOption ''
|
||
|
compatibility to the corresponding frontend NixOS configuration.
|
||
|
|
||
|
This is created by opting out to configure stuff
|
||
|
which is already configured by the corresponding NixOS module.
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|