Skip to content

Commit

Permalink
docs: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed May 13, 2024
1 parent 201de86 commit 67be4e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Upload Pages Artifact
uses: "actions/upload-pages-artifact@v3"
with:
path: "result"
path: "result/"

deploy:
needs: "build"
Expand Down
10 changes: 5 additions & 5 deletions modules/extra/home-manager/gtklock.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with builtins; let
cfg = config.programs.gtklock;

inherit (lib) types mkIf mkOption mkEnableOption mkPackageOptionMD mdDoc literalExpression optionals optionalString;
inherit (lib) types mkIf mkOption mkEnableOption mkPackageOptionMD literalExpression optionals optionalString;
inherit (lib.generators) toINI;

# the main config includes two very niche options: style (which takes a path) and modules, which takes a list of module paths
Expand All @@ -33,7 +33,7 @@ in {
gtk-theme = mkOption {
type = types.str;
default = "";
description = mdDoc ''
description = ''
GTK theme to use for gtklock.
'';
example = "Adwaita-dark";
Expand All @@ -42,7 +42,7 @@ in {
style = mkOption {
type = with types; oneOf [str path];
default = "";
description = mdDoc ''
description = ''
The css file to be used for gtklock.
'';
example = literalExpression ''
Expand All @@ -59,7 +59,7 @@ in {
modules = mkOption {
type = with types; listOf (either package str);
default = [];
description = mdDoc ''
description = ''
A list of gtklock modulesto use. Can either be packages, absolute paths, or strings.
'';
example = literalExpression ''
Expand All @@ -80,7 +80,7 @@ in {
countdown = 20;
};
};
description = mdDoc ''
description = ''
Extra configuration to append to gtklock configuration file.
Mostly used for appending module configurations.
'';
Expand Down

0 comments on commit 67be4e9

Please sign in to comment.