Second fix on new structure
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
# Apps
|
||||
home.shell.zsh = true;
|
||||
home.shell.git = true;
|
||||
home.shell.neovim = true;
|
||||
|
||||
# Homebrew apps
|
||||
home.homebrew.iterm = true;
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
{ ... }:
|
||||
{
|
||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||
|
||||
# System version
|
||||
system.stateVersion = "25.11";
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
# Apps
|
||||
home.shell.zsh = true;
|
||||
home.shell.git = true;
|
||||
home.shell.neovim = true;
|
||||
|
||||
# Code editor
|
||||
home.ide.zed.enable = true;
|
||||
|
||||
@@ -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 {
|
||||
Reference in New Issue
Block a user