Compare commits

..

2 commits

Author SHA1 Message Date
f2a3cbdbf6 Common: enable and configure Git 2023-10-05 12:47:23 +02:00
f753d67874 Gaming: install Heroic games launcher 2023-10-05 10:13:06 +02:00
3 changed files with 20 additions and 1 deletions

View file

@ -9,6 +9,7 @@
./command-not-found.nix ./command-not-found.nix
./comma.nix ./comma.nix
./bash.nix ./bash.nix
./git.nix
]; ];
# Some programs dont have a programs.*.enable option, so I install their package here # Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home-manager.users.toast = {
programs.git = {
enable = true;
delta.enable = true;
extraConfig = {
init.defaultBranch = "main";
pull.rebase = "interactive";
};
};
};
}

View file

@ -1,4 +1,4 @@
{ ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
@ -6,4 +6,7 @@
./mangohud.nix ./mangohud.nix
./rpcs3.nix ./rpcs3.nix
]; ];
environment.systemPackages = with pkgs; [
heroic
];
} }