diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:17:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:22:56 -0500 |
| commit | 80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9 (patch) | |
| tree | 9df75bbfc0522c5868da40cbc966ff10b4d3d62a /options.nix | |
| parent | remove unused variabled (and add nixd lsp) (diff) | |
| download | dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.gz dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.bz2 dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.zip | |
doing some linting
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options.nix b/options.nix index 141bf08..5093e8b 100644 --- a/options.nix +++ b/options.nix @@ -5,7 +5,7 @@ }: with lib; let # monitor options - monitorOpts = self: { + monitorOpts = _: { options = { port = mkOption { type = types.str; @@ -71,7 +71,7 @@ with lib; let # theme color options - colorOpts = self: { + colorOpts = _: { options = { name = mkOption { type = types.str; |