Last fix on darwin new structure

This commit is contained in:
Laurent Gueret
2026-02-11 16:00:40 +01:00
parent e3e63a800b
commit 7aaedb5ffa
30 changed files with 97 additions and 96 deletions
+2 -2
View File
@@ -6,10 +6,10 @@
}:
with lib;
let
cfg = config.home.shell.devenv;
cfg = config.user.shell.devenv;
in
{
options.home.shell.devenv = {
options.user.shell.devenv = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
+2 -3
View File
@@ -5,16 +5,15 @@
}:
with lib;
let
cfg = config.home.shell.git;
cfg = config.user.shell.git;
in
{
options.home.shell.git = {
options.user.shell.git = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
programs.git = {
enable = true;
config.init.defaultBranch = "main";
settings = {
user = {
+2 -2
View File
@@ -1,10 +1,10 @@
{ lib, config, ... }:
with lib;
let
cfg = config.home.shell.neovim;
cfg = config.user.shell.neovim;
in
{
options.home.shell.neovim = {
options.user.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.home.shell.nh;
cfg = config.user.shell.nh;
in
{
options.home.shell.nh = {
options.user.shell.nh = {
enable = mkEnableOption "System nh service";
};
config = mkIf cfg.enable {
+2 -2
View File
@@ -1,10 +1,10 @@
{ lib, config, ... }:
with lib;
let
cfg = config.home.shell.zsh;
cfg = config.user.shell.zsh;
in
{
options.home.shell.zsh = {
options.user.shell.zsh = {
enable = mkEnableOption "System zsh service";
};
config = mkIf cfg.enable {