Compare commits

..

No commits in common. "f2a3cbdbf656dca2927e2592fdd4f5293c543fd1" and "2d22bdf0131a0df478bc7e30f02d73646d3c33eb" have entirely different histories.

3 changed files with 1 additions and 20 deletions

View file

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

View file

@ -1,15 +0,0 @@
{ 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 = [
@ -6,7 +6,4 @@
./mangohud.nix
./rpcs3.nix
];
environment.systemPackages = with pkgs; [
heroic
];
}