Add neovim config, and some minor changes

This commit is contained in:
Cameron Reed 2024-01-30 21:23:52 -07:00
parent d97bda1dee
commit 8e7bac7c8a
9 changed files with 26 additions and 6 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "common/users/cameron/home-manager/other-files/nvim"]
path = common/users/cameron/home-manager/other-files/nvim
url = ssh://gitea@gitea.cam123.dev:9024/CameronReed/Neovim-Config.git

View File

@ -6,9 +6,9 @@
target = ".config/hypr/hyprpaper.conf"; target = ".config/hypr/hyprpaper.conf";
text = '' text = ''
preload = ${./wallpapers/lake.jpg} preload = ${./other-files/wallpapers/lake.jpg}
wallpaper = ,${./wallpapers/lake.jpg} wallpaper = ,${./other-files/wallpapers/lake.jpg}
splash = false splash = false
''; '';

View File

@ -0,0 +1,14 @@
{ pkgs, lib, config, osConfig, ... }:
{
xdg.configFile."nvim" = {
source = ./other-files/nvim;
recursive = true;
};
home.packages = with pkgs; [
lua-language-server
ripgrep
neovim
];
}

@ -0,0 +1 @@
Subproject commit 4b08142700cc6ae9555248b4049478912d2ab3fd

View File

Before

Width:  |  Height:  |  Size: 912 KiB

After

Width:  |  Height:  |  Size: 912 KiB

View File

@ -19,7 +19,7 @@
output = { output = {
"*" = { "*" = {
bg = "~/Pictures/background.jpg fill"; bg = "${./other-files/wallpapers/lake.jpg} fill";
}; };
eDP-1 = { eDP-1 = {

View File

@ -7,7 +7,7 @@
settings = { settings = {
ignore-empty-password = true; ignore-empty-password = true;
color = "333333"; color = "333333";
image = "${./wallpapers/lake.jpg}"; image = "${./other-files/wallpapers/lake.jpg}";
}; };
}; };
}; };

View File

@ -2,6 +2,8 @@
{ {
imports = [ imports = [
inputs.nix-colors.homeManagerModules.default
./home-manager/options.nix ./home-manager/options.nix
./home-manager/sway.nix ./home-manager/sway.nix
@ -12,7 +14,7 @@
./home-manager/waybar.nix ./home-manager/waybar.nix
./home-manager/zsh.nix ./home-manager/zsh.nix
./home-manager/nvim.nix
./home-manager/lf.nix ./home-manager/lf.nix
]; ];

View File

@ -96,11 +96,11 @@
curl curl
wget wget
kitty kitty
ranger
lf lf
tmux tmux
firefox firefox
pulsemixer pulsemixer
gcc
]); ]);
environment.shells = with pkgs; [ bash zsh ]; environment.shells = with pkgs; [ bash zsh ];