Skip to content

Commit

Permalink
feat: add descriptions to template
Browse files Browse the repository at this point in the history
  • Loading branch information
IogaMaster committed Nov 19, 2023
1 parent 3c5afb8 commit 1ce5c49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/nixos/apps/tools/gnupg/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
config,
lib,
pkgs,
inputs,
...
}:
with lib;
Expand Down
5 changes: 5 additions & 0 deletions templates/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
_: {
lib = {
description = "Library module template";
path = ./lib;
};
module = {
description = "Module template";
path = ./module;
};
overlay = {
description = "Overlay template";
path = ./overlay;
};
system = {
description = "System template";
path = ./system;
};
home = {
description = "Home template";
path = ./home;
};
}

0 comments on commit 1ce5c49

Please sign in to comment.