Squash merge dev into master

This commit is contained in:
alsaiduq-lab 2025-06-01 07:14:51 -06:00
parent a009895ea0
commit cc87e2cb60
28 changed files with 294 additions and 256 deletions

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.brave = {
enable = true;
package = pkgs.brave;
};
}

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
discord
vesktop
];
}

View file

@ -1,7 +1,4 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.packages = with pkgs; [
mgba
desmume
@ -9,7 +6,7 @@
pcsx2
ryujinx
mupen64plus
dolphin-emu
dolphin-emu # might remove. causes a long time to build
retroarch
mednafen
joycond

View file

@ -1,14 +1,10 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.packages = with pkgs; [
fish-rust
starship
fzf
bat
eza
fd
ripgrep
ugrep
];
}

View file

@ -1,15 +1,16 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.packages = with pkgs; [
lazygit
git
git-lfs
gitAndTools.gh
gitAndTools.diff-so-fancy
];
programs.git = {
enable = true;
includes = [
{ path = "./.secrets/.git-config"; }
{path = "./.secrets/.git-config";}
];
extraConfig = {
credential.helper = "store --file ./.secrets/.git-credentials";

View file

@ -6,18 +6,39 @@
home.packages = with pkgs; [
neovim
gnugrep
fd
fzf
nodejs
gcc
git
luajit
luaPackages.luarocks
gopls
haskell-language-server
jdt-language-server
clang-tools
vscode-langservers-extracted
marksman
nil
lua-language-server
taplo
yaml-language-server
sqls
alejandra
stylua
shfmt
yamlfmt
luaPackages.luacheck
yamllint
hadolint
shellcheck
cppcheck
rubocop
phpPackages.php-codesniffer
phpPackages.phpstan
checkstyle
tflint
sqlfluff
tree-sitter
luajitPackages.jsregexp
jq
curl
unzip
alejandra
];
home.sessionVariables = {

View file

@ -1,7 +1,4 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.packages = with pkgs; [
picom
];

View file

@ -1,6 +1,3 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.packages = pkgs.polybar.all;
}