This commit is contained in:
Daniel Ziltener 2024-09-16 14:33:19 +02:00
parent 3d9dcff78b
commit 764fd631e8
Signed by: zilti
GPG Key ID: B38976E82C9DAE42

View File

@ -92,7 +92,7 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
imports = [ ./hyprland/hyprland.nix imports = [ ./hyprland/hyprland.nix
./waybar/settings.nix ./waybar/settings.nix
./emacs/emacs.nix ./emacs/emacs.nix
./chicken/chicken.nix # ./chicken/chicken.nix
]; ];
home.stateVersion = "24.05"; home.stateVersion = "24.05";
@ -116,6 +116,10 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
QT_QPA_PLATFORM = "wayland"; QT_QPA_PLATFORM = "wayland";
}; };
home.shellAliases = {
"git init" = "git init --object-format=sha256";
};
accounts = { accounts = {
# calendar = { # calendar = {
# basePath = "${config.home.homeDirectory}/calendars"; # basePath = "${config.home.homeDirectory}/calendars";
@ -364,6 +368,8 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
push.autoSetupRemote = true; push.autoSetupRemote = true;
init = { init = {
defaultBranch = "master"; defaultBranch = "master";
};
extensions = {
objectFormat = "sha256"; objectFormat = "sha256";
}; };
}; };