Skip to content

Commit

Permalink
fix(nix): added missing lib.mkOption function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
luisnquin committed Jan 6, 2024
1 parent ae667bf commit 948a3be
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nix/hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ in {
config = let
editorModule = types.submodule {
options = {
name = {
name = mkOption {
type = types.str;
default = "nano";
};

extraArgs = {
extraArgs = mkOption {
type = types.listOf types.str;
default = [];
};
Expand All @@ -30,7 +30,6 @@ in {
options = {
editor = mkOption {
type = editorModule;
default = "nano";
};

theme = mkOption {
Expand Down

0 comments on commit 948a3be

Please sign in to comment.