Second fix on new structure
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||||
|
|
||||||
|
# System version
|
||||||
|
system.stateVersion = "25.11";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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 {
|
||||||
Reference in New Issue
Block a user