Second fix on new structure

This commit is contained in:
Laurent Gueret
2026-02-11 13:27:09 +01:00
parent 6456c71f20
commit 206b9b6050
5 changed files with 8 additions and 8 deletions
+1
View File
@@ -14,6 +14,7 @@
# Apps
home.shell.zsh = true;
home.shell.git = true;
home.shell.neovim = true;
# Homebrew apps
home.homebrew.iterm = true;
+3
View File
@@ -1,4 +1,7 @@
{ ... }:
{
nixpkgs.hostPlatform = "aarch64-darwin";
# System version
system.stateVersion = "25.11";
}
+1
View File
@@ -14,6 +14,7 @@
# Apps
home.shell.zsh = true;
home.shell.git = true;
home.shell.neovim = true;
# Code editor
home.ide.zed.enable = true;
+1 -6
View File
@@ -18,11 +18,6 @@
# System configurations
os.keyboard.apple.enable = true;
# Shell configurations
os.shell.zsh.enable = true;
os.shell.git.enable = true;
os.shell.nh.enable = true;
# Gnome configurations
os.gnome.shell.enable = true;
os.gnome.apps.enable = true;
@@ -32,7 +27,7 @@
os.virtualisation.podman.enable = true;
# Dev
os.shell.dev.enable = true;
os.shell.nh.enable = true;
os.shell.devenv.enable = true;
# Ssh
@@ -1,10 +1,10 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.shell.neovim;
cfg = config.home.shell.neovim;
in
{
options.os.shell.neovim = {
options.home.shell.neovim = {
enable = mkEnableOption "System neovim service";
};
config = mkIf cfg.enable {