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 # Apps
home.shell.zsh = true; home.shell.zsh = true;
home.shell.git = true; home.shell.git = true;
home.shell.neovim = true;
# Homebrew apps # Homebrew apps
home.homebrew.iterm = true; home.homebrew.iterm = true;
+3
View File
@@ -1,4 +1,7 @@
{ ... }: { ... }:
{ {
nixpkgs.hostPlatform = "aarch64-darwin"; nixpkgs.hostPlatform = "aarch64-darwin";
# System version
system.stateVersion = "25.11";
} }
+1
View File
@@ -14,6 +14,7 @@
# Apps # Apps
home.shell.zsh = true; home.shell.zsh = true;
home.shell.git = true; home.shell.git = true;
home.shell.neovim = true;
# Code editor # Code editor
home.ide.zed.enable = true; home.ide.zed.enable = true;
+1 -6
View File
@@ -18,11 +18,6 @@
# System configurations # System configurations
os.keyboard.apple.enable = true; os.keyboard.apple.enable = true;
# Shell configurations
os.shell.zsh.enable = true;
os.shell.git.enable = true;
os.shell.nh.enable = true;
# Gnome configurations # Gnome configurations
os.gnome.shell.enable = true; os.gnome.shell.enable = true;
os.gnome.apps.enable = true; os.gnome.apps.enable = true;
@@ -32,7 +27,7 @@
os.virtualisation.podman.enable = true; os.virtualisation.podman.enable = true;
# Dev # Dev
os.shell.dev.enable = true; os.shell.nh.enable = true;
os.shell.devenv.enable = true; os.shell.devenv.enable = true;
# Ssh # Ssh
@@ -1,10 +1,10 @@
{ lib, config, ... }: { lib, config, ... }:
with lib; with lib;
let let
cfg = config.os.shell.neovim; cfg = config.home.shell.neovim;
in in
{ {
options.os.shell.neovim = { options.home.shell.neovim = {
enable = mkEnableOption "System neovim service"; enable = mkEnableOption "System neovim service";
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {