This commit is contained in:
alsaiduq-lab 2025-03-16 23:44:16 -06:00
parent 1e9033f823
commit b9fe4ae3c7
8 changed files with 92 additions and 35 deletions

View file

@ -2,11 +2,9 @@
{
imports = [
./modules/cava.nix
./modules/dunst.nix
./modules/fish.nix
./modules/ghostty.nix
./modules/i3.nix
./modules/lazygit.nix
./modules/nvim.nix
./modules/picom.nix
@ -27,10 +25,10 @@
gnused
gnugrep
findutils
yazi
htop
btop
nvtopPackages.full
arandr
nitrogen
];
}

View file

@ -1,7 +0,0 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
cava
];
}

View file

@ -1,13 +0,0 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
dmenu
i3status
i3lock
i3blocks
feh
yazi
udiskie
];
}

View file

@ -1,18 +1,38 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
neovim
ripgrep
fd
fzf
nodejs
gcc
git
lua
luajit
luaPackages.luarocks
nil
lua-language-server
curl
unzip
]))
];
home.sessionVariables = {
LUA_PATH = "${pkgs.luajit}/share/lua/5.1/?.lua;;";
LUA_CPATH = "${pkgs.luajit}/lib/lua/5.1/?.so;;";
};
home.sessionPath = [
"$HOME/.local/share/nvim/mason/bin"
];
xdg.configFile."nvim" = {
source = builtins.fetchGit {
url = "https://github.com/alsaiduq-lab/dotfiles.git";
ref = "dev";
rev = "99e2cab828459373bc7524690668fdd209b3f517";
url = "https://github.com/alsaiduq-lab/nvim-dotfiles.git";
ref = "master";
rev = "71155b4a4b63d9974f1bc3b66303d6f7e5e06871";
};
recursive = true;
};