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
@@ -6,10 +6,10 @@
}:
with lib;
let
cfg = config.user.shell.devenv;
cfg = config.home.shell.devenv;
in
{
options.user.shell.devenv = {
options.home.shell.devenv = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
+2 -2
View File
@@ -5,10 +5,10 @@
}:
with lib;
let
cfg = config.user.shell.git;
cfg = config.home.shell.git;
in
{
options.user.shell.git = {
options.home.shell.git = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
+2 -2
View File
@@ -1,10 +1,10 @@
{ lib, config, ... }:
with lib;
let
cfg = config.user.shell.neovim;
cfg = config.home.shell.neovim;
in
{
options.user.shell.neovim = {
options.home.shell.neovim = {
enable = mkEnableOption "System neovim service";
};
config = mkIf cfg.enable {
+2 -2
View File
@@ -1,10 +1,10 @@
{ lib, config, ... }:
with lib;
let
cfg = config.user.shell.nh;
cfg = config.home.shell.nh;
in
{
options.user.shell.nh = {
options.home.shell.nh = {
enable = mkEnableOption "System nh service";
};
config = mkIf cfg.enable {
+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;