Add ion shell module
This commit is contained in:
parent
dfe7d58c30
commit
e46a086ab3
4 changed files with 24 additions and 0 deletions
18
home/modules/programs/ion.nix
Normal file
18
home/modules/programs/ion.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
cfg = config.youthlic.programs.ion;
|
||||
in {
|
||||
options = {
|
||||
youthlic.programs.ion = {
|
||||
enable = lib.mkEnableOption "ion";
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.ion = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue