Skip to content

Commit f975867

Browse files
committed
Updated system and learning nvim/nvchad
1 parent 1154523 commit f975867

File tree

4 files changed

+55
-25
lines changed

4 files changed

+55
-25
lines changed

flake.lock

Lines changed: 38 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,11 @@
264264
nix-straight.flake = false;
265265
nix-doom-emacs.inputs.nix-straight.follows = "nix-straight";
266266

267+
nvchad = {
268+
url = "github:NvChad/starter";
269+
flake = false;
270+
};
271+
267272
eaf = {
268273
url = "github:emacs-eaf/emacs-application-framework";
269274
flake = false;

profiles/work/home.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
../../user/shell/sh.nix # My zsh and bash config
1414
../../user/shell/cli-collection.nix # Useful CLI apps
1515
../../user/app/doom-emacs/doom.nix # My doom emacs config
16+
../../user/app/nvim/nvim.nix # My doom emacs config
1617
#../../user/app/emacsng # Me experimenting with emacsng and a vanilla config
1718
../../user/app/ranger/ranger.nix # My ranger file manager config
1819
../../user/app/git/git.nix # My git config
@@ -116,9 +117,7 @@
116117
vlc
117118
mpv
118119
yt-dlp
119-
(blender-hip.override {
120-
cudaSupport = true;
121-
})
120+
blender-hip
122121
libresprite
123122
# cura is moderately broken on wayland, so use xwayland
124123
(pkgs-stable.cura.overrideAttrs (oldAttrs: {

user/app/nvim/nvim.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ pkgs, inputs, ... }:
2+
3+
{
4+
home.packages = with pkgs; [
5+
neovim
6+
neovide
7+
];
8+
home.file.".config/nvim".source = inputs.nvchad;
9+
home.file.".config/nvim".recursive = true;
10+
}

0 commit comments

Comments
 (0)