Compare commits
3 commits
renovate/l
...
main
Author | SHA1 | Date | |
---|---|---|---|
09cc4e6110 | |||
d2babf8808 | |||
7963190ef1 |
5 changed files with 15 additions and 33 deletions
|
@ -2,17 +2,12 @@
|
|||
{
|
||||
flake.nixosModules =
|
||||
let
|
||||
nvim-config =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
(import ../nvim {
|
||||
inherit (inputs) unstable;
|
||||
inherit (pkgs) system;
|
||||
})
|
||||
];
|
||||
};
|
||||
nvim-config = {
|
||||
imports = [
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
../nvim
|
||||
];
|
||||
};
|
||||
homeManagerModuleSandalone = import ../home {
|
||||
inherit nvim-config;
|
||||
inherit (inputs) stylix;
|
||||
|
|
|
@ -3,20 +3,19 @@
|
|||
flake.overlays.nixvim = inputs.nixvim.overlays.default;
|
||||
|
||||
perSystem =
|
||||
{ pkgs, system, ... }:
|
||||
{ lib, system, ... }:
|
||||
let
|
||||
nixvimLib = inputs.nixvim.lib.${system};
|
||||
nixvim = inputs.nixvim.legacyPackages.${system};
|
||||
testNvimModule = nixvimLib.check.mkTestDerivationFromNixvimModule;
|
||||
nvimModule = extraConfig: {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {
|
||||
inherit (inputs) unstable;
|
||||
inherit system;
|
||||
};
|
||||
pkgs = inputs.unstable.legacyPackages.${system};
|
||||
module = {
|
||||
imports = [ (import ../nvim/standalone.nix { standalone = true; }) ];
|
||||
config = extraConfig;
|
||||
imports = [ ../nvim/standalone.nix ];
|
||||
config = lib.mkMerge [
|
||||
{ performance.combinePlugins.enable = true; }
|
||||
extraConfig
|
||||
];
|
||||
};
|
||||
};
|
||||
moduleDev = nvimModule { };
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
{ system, unstable }:
|
||||
{ lib, config, ... }:
|
||||
let
|
||||
cfg = config.jhome.nvim;
|
||||
|
@ -7,9 +6,8 @@ in
|
|||
imports = [ ./options.nix ];
|
||||
|
||||
config.programs.nixvim = lib.mkMerge [
|
||||
(import ./standalone.nix { standalone = false; })
|
||||
(import ./standalone.nix)
|
||||
(lib.mkIf cfg.enable {
|
||||
nixpkgs = lib.mkForce { pkgs = import unstable { inherit system; }; };
|
||||
enable = true;
|
||||
defaultEditor = lib.mkDefault true;
|
||||
jhome.nvim = cfg;
|
||||
|
|
|
@ -15,7 +15,6 @@ let
|
|||
# "html" # Not writing html
|
||||
"jsonls"
|
||||
"marksman"
|
||||
"nixd"
|
||||
"ruff"
|
||||
"taplo"
|
||||
# "texlab" # Not using it
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
{ standalone }:
|
||||
{
|
||||
pkgs,
|
||||
system,
|
||||
unstable,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./options.nix
|
||||
|
@ -17,7 +10,6 @@
|
|||
|
||||
config = {
|
||||
withRuby = false;
|
||||
nixpkgs = lib.optionalAttrs standalone { pkgs = unstable.legacyPackages.${system}; };
|
||||
globals.mapleader = " ";
|
||||
# Appearance
|
||||
colorschemes.gruvbox = {
|
||||
|
@ -50,7 +42,6 @@
|
|||
# Enable local configuration :h 'exrc'
|
||||
exrc = true; # safe since nvim 0.9
|
||||
};
|
||||
performance.combinePlugins.enable = true;
|
||||
extraPlugins =
|
||||
let
|
||||
plugins = pkgs.vimPlugins;
|
||||
|
|
Loading…
Reference in a new issue