first 'working' hyperland config, no bar yet

This commit is contained in:
Christoph Hollizeck 2024-09-10 01:31:27 +02:00
parent c365ba3827
commit 0f8d4eb694
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
11 changed files with 639 additions and 72 deletions

View file

@ -1,17 +1,16 @@
{
options,
config,
lib,
pkgs,
...
}:
with lib;
with lib.wyrdgard;
let
inherit (lib) mkIf;
inherit (lib.wyrdgard) mkBoolOpt enabled;
cfg = config.wyrdgard.submodules.basics-wsl;
in
{
options.wyrdgard.submodules.basics-wsl = with types; {
options.wyrdgard.submodules.basics-wsl = {
enable = mkBoolOpt false "Whether or not to enable basic configuration.";
};