framework: update to 25.11

This commit is contained in:
Tristan 2025-12-02 10:04:20 +00:00
parent ce966f0782
commit 8a4b37e7ed
13 changed files with 103 additions and 157 deletions

View file

@ -29,7 +29,7 @@
mosh
ripgrep
usbutils
du-dust
dust
htop
btop
libsixel

View file

@ -35,9 +35,9 @@ in {
}
];
programs.git = {
userName = config.home.userFullname;
userEmail = cfg.email;
programs.git.settings.user = {
name = config.home.userFullname;
email = cfg.email;
};
accounts.email.accounts.${cfg.email} = lib.mkIf cfg.terminal {

View file

@ -6,11 +6,11 @@
}: {
programs.git = {
enable = true;
extraConfig = {
settings = {
rerere.enabled = true;
rebase.updateRefs = true;
};
aliases = {
settings.aliases = {
ui = "!lazygit";
graph = "log --oneline --all --graph";
amend = "commit --amend --no-edit";
@ -44,10 +44,8 @@
git fetch origin $opts
''}/bin/bare-clone";
};
difftastic = {
enable = true;
};
};
programs.difftastic = {enable = true;};
programs.lazygit = {
enable = true;

View file

@ -28,7 +28,7 @@
# other
element-desktop
bitwarden
bitwarden-desktop
inputs.zen-browser.packages.x86_64-linux.default
];

View file

@ -14,7 +14,7 @@ in {
email = "tristan.beedell@cryoserver.com";
terminal = false;
};
programs.git.extraConfig = {
programs.git.settings.extraConfig = {
"includeIf \"gitdir:~/Documents/personal/\"" = {
path = "~/Documents/personal/.gitconfig";
};
@ -44,13 +44,8 @@ in {
home.sessionVariables = {
CYPRESS_INSTALL_BINARY = 0;
CYPRESS_RUN_BINARY = "${pkgs.cypress}/bin/Cypress";
MONGOMS_SYSTEM_BINARY = lib.getExe' pkgs.mongodb-7_0 "mongod";
};
gtk.gtk3.bookmarks = [
"file:///home/tristan/OneDrive/ OneDrive"
];
programs.vscode = {
package = pkgs.vscode;
profiles.default.extensions = with pkgs; [

View file

@ -7,7 +7,7 @@
programs.starship.enable = true;
programs.zsh = {
enable = true;
dotDir = ".config/zsh";
dotDir = "${config.xdg.configHome}/zsh";
history = {
path = "${config.xdg.dataHome}/zsh/zsh_history";
};