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

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

View file

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

View file

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