summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-08-14 12:40:58 +0200
committersils <sils@sils.li>2023-08-14 12:40:58 +0200
commit43ac4f5a74ef47908e55ba7242ebf9600ee26626 (patch)
tree652c83d7e73a7292b39b7f6a4e50f8b9c66f6269 /flake.nix
parentRefactor(u/sils): Format (diff)
downloadnix-config-43ac4f5a74ef47908e55ba7242ebf9600ee26626.zip
Feat(treewide): Switch to nixvim and tweak nvim config
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 5e99b1e..ce95a03 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,12 +12,11 @@
impermanence.url = "github:nix-community/impermanence";
# inputs for following
- nixneovim = {
- url = "github:nixneovim/nixneovim";
+ nixvim = {
+ url = "github:nix-community/nixvim";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
- home-manager.follows = "home-manager";
};
};
lanzaboote = {
@@ -112,14 +111,14 @@
#grades,
prismlauncher,
lanzaboote,
- nixneovim,
+ nixvim,
impermanence,
...
} @ attrs: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
- overlays = [nixneovim.overlays.default];
+ #overlays = [nixvim.overlays.default];
};
sysLib = shell_library.lib.${system};
defaultModules = [
@@ -131,7 +130,7 @@
useGlobalPkgs = true;
useUserPackages = true;
users.sils = import ./users/sils;
- extraSpecialArgs = {inherit pkgs system sysLib river_init_lesser yambar_cpu yambar_memory prismlauncher nixneovim impermanence;};
+ extraSpecialArgs = {inherit pkgs system sysLib river_init_lesser yambar_cpu yambar_memory prismlauncher nixvim impermanence;};
};
}
];