refactored
This commit is contained in:
parent
ae359aad22
commit
762e77a900
4 changed files with 11 additions and 10 deletions
|
|
@ -1,6 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
vesktop
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
desmume
|
||||
duckstation
|
||||
ryujinx
|
||||
retroarch
|
||||
mednafen
|
||||
waydroid
|
||||
shadps4
|
||||
rpcs3_latest
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue