refactored

This commit is contained in:
alsaiduq-lab 2025-07-02 02:12:38 -06:00
parent ae359aad22
commit 762e77a900
4 changed files with 11 additions and 10 deletions

View file

@ -21,7 +21,8 @@
./modules/spotify.nix ./modules/spotify.nix
./modules/obs.nix ./modules/obs.nix
./modules/udiskie.nix ./modules/udiskie.nix
./modules/bambustudio.nix # temp removed, currently broken on nixpkgs? lmao
# ./modules/bambustudio.nix
]; ];
home.username = "cobray"; home.username = "cobray";

View file

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

View file

@ -1,12 +1,9 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
desmume desmume
duckstation
ryujinx ryujinx
retroarch retroarch
mednafen
waydroid waydroid
shadps4
rpcs3_latest rpcs3_latest
]; ];
} }

View file

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