From fa1f59047ce9214e171df9e174504f8dc28f587c Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 21 Oct 2025 16:30:10 +0300 Subject: [PATCH] enable neovim --- hosts/darwinHosts/prometheus/configuration.nix | 6 ++++-- hosts/darwinHosts/prometheus/dummy-module.nix | 10 ---------- 2 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 hosts/darwinHosts/prometheus/dummy-module.nix diff --git a/hosts/darwinHosts/prometheus/configuration.nix b/hosts/darwinHosts/prometheus/configuration.nix index 4e18e7a..7928e44 100644 --- a/hosts/darwinHosts/prometheus/configuration.nix +++ b/hosts/darwinHosts/prometheus/configuration.nix @@ -9,11 +9,13 @@ imports = [ ../../../modules/nixos/options.nix ../../../modules/nixos/programs/command-line.nix - # inputs.home-manager-darwin.darwinModules.home-manager inputs.home-manager.darwinModules.home-manager - ./dummy-module.nix ]; + osbmModules = { + programs.neovim.enable = true; + }; + home-manager = { useGlobalPkgs = true; useUserPackages = true; diff --git a/hosts/darwinHosts/prometheus/dummy-module.nix b/hosts/darwinHosts/prometheus/dummy-module.nix deleted file mode 100644 index d4a7076..0000000 --- a/hosts/darwinHosts/prometheus/dummy-module.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ lib, ... }: -{ - options = { - osbmModules.enableKDE = lib.mkOption { - type = lib.types.bool; - default = false; - description = "Enable KDE Plasma"; - }; - }; -}