Squash merge dev into master
This commit is contained in:
parent
a009895ea0
commit
cc87e2cb60
28 changed files with 294 additions and 256 deletions
|
|
@ -16,6 +16,8 @@
|
|||
./modules/zellij.nix
|
||||
./modules/ffmpeg.nix
|
||||
./modules/emulators.nix
|
||||
./modules/discord.nix
|
||||
./modules/brave.nix
|
||||
];
|
||||
|
||||
home.username = "cobray";
|
||||
|
|
@ -28,7 +30,6 @@
|
|||
home.packages = with pkgs; [
|
||||
coreutils
|
||||
gnused
|
||||
gnugrep
|
||||
findutils
|
||||
yazi
|
||||
htop
|
||||
|
|
|
|||
6
home-manager/modules/brave.nix
Normal file
6
home-manager/modules/brave.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
programs.brave = {
|
||||
enable = true;
|
||||
package = pkgs.brave;
|
||||
};
|
||||
}
|
||||
6
home-manager/modules/discord.nix
Normal file
6
home-manager/modules/discord.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
vesktop
|
||||
];
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
fish-rust
|
||||
starship
|
||||
fzf
|
||||
bat
|
||||
eza
|
||||
fd
|
||||
ripgrep
|
||||
ugrep
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
picom
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,3 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
home.packages = pkgs.polybar.all;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue