1

Ags: Init empty module

This commit is contained in:
2024-10-13 18:12:16 +02:00
parent 3c15f4a780
commit 0ae2cc8e22
5 changed files with 98 additions and 18 deletions

View File

@ -0,0 +1,16 @@
{
config,
lib,
mylib,
...
}:
with lib;
with mylib.modules; let
cfg = config.modules.ags;
in {
options.modules.ags = import ./options.nix {inherit lib mylib;};
config =
mkIf cfg.enable {
};
}

View File

@ -0,0 +1,9 @@
{
lib,
mylib,
...
}:
with lib;
with mylib.modules; {
enable = mkEnableOption "Enable Ags Widgets";
}

View File

@ -19,5 +19,6 @@
# HM modules imported from the flake inputs
inputs.nix-flatpak.homeManagerModules.nix-flatpak
inputs.nixvim.homeManagerModules.nixvim
inputs.ags.homeManagerModules.default
];
}