Fix on modules name and on zsh

This commit is contained in:
2026-02-11 19:15:20 +01:00
parent 6911410f6a
commit 4f10ad35cd
24 changed files with 65 additions and 62 deletions
+2 -3
View File
@@ -1,16 +1,15 @@
{ lib, config, ... }:
with lib;
let
cfg = config.user.shell.zsh;
cfg = config.home.shell.zsh;
in
{
options.user.shell.zsh = {
options.home.shell.zsh = {
enable = mkEnableOption "System zsh service";
};
config = mkIf cfg.enable {
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;