Replaced nixvim with nix-cats external flake.

This commit is contained in:
Gabe Venberg 2025-07-04 19:00:20 +02:00
parent 221524709e
commit dc1e99a104
44 changed files with 57 additions and 1455 deletions

View file

@ -1,4 +1,5 @@
{
inputs,
config,
pkgs,
lib,
@ -15,7 +16,6 @@
user = {
git.enable = lib.mkDefault true;
nvim.enable = lib.mkDefault true;
};
home.packages = with pkgs; [
@ -31,6 +31,7 @@
curl
rsync
p7zip
inputs.nvim-config.packages.${pkgs.system}.nvim-minimal
];
home.sessionVariables = {
@ -38,6 +39,8 @@
POETRY_VIRTUALENVS_IN_PROJECT = 1;
};
home.sessionVariables.EDITOR = lib.mkDefault "nvim-minimal";
home.sessionPath = [
"$HOME/.nix-profile/bin/"
"$HOME/.local/bin/"

View file

@ -1,4 +1,5 @@
{
inputs,
config,
pkgs,
lib,
@ -11,13 +12,6 @@
../../configs/home-manager/zk.nix
];
user = {
nvim = {
enable-lsp = lib.mkDefault true;
enable-treesitter = lib.mkDefault true;
};
};
home.packages = with pkgs; [
tre-command
ripgrep-all
@ -25,8 +19,11 @@
fclones
libqalculate
f2
inputs.nvim-config.packages.${pkgs.system}.nvim
];
home.sessionVariables.EDITOR = "nvim";
programs = {
zoxide.enable = true;
tealdeer.enable = true;