Compare commits
2 commits
2d22bdf013
...
f2a3cbdbf6
| Author | SHA1 | Date | |
|---|---|---|---|
| f2a3cbdbf6 | |||
| f753d67874 |
3 changed files with 20 additions and 1 deletions
|
|
@ -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; [
|
||||||
|
|
|
||||||
15
roles/common/programs/git.nix
Normal file
15
roles/common/programs/git.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue