Skip to content
Snippets Groups Projects
Verified Commit 76837c5f authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Added ispell

parent 9586e0cf
No related branches found
No related tags found
No related merge requests found
......@@ -895,6 +895,20 @@
};
};
};
ispell = lib.mkOption {
type = lib.types.submodule {
options = {
enabled = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = ''
Whether or not ispell has been installed.
'';
};
};
};
};
file = lib.mkOption {
type = lib.types.submodule {
options = {
......
......@@ -15,7 +15,7 @@
yubikey-touch-detector
age-plugin-yubikey
yubico-piv-tool
yubioath-flutter
#yubioath-flutter
yubihsm-shell
yubihsm-connector
];
......
......@@ -25,5 +25,6 @@
./file
./dnsutils
./inetutils
./ispell
];
}
{ config, ... }:
{
config.provides.util.ispell.enabled = true;
}
{ pkgs, ... }: {
imports = [
../common.nix
./config.nix
];
environment.systemPackages = with pkgs; [
ispell
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment