This commit is contained in:
biscuit
2025-06-20 08:58:14 -05:00
parent bc70242a99
commit 2d8ba9f7ea
8 changed files with 45 additions and 16 deletions
+8 -2
View File
@@ -8,17 +8,23 @@
vpnSecretFile = "/home/biscuit/Wireguard/secret";
};
gitProfile = {
user = "biscuit";
email = "biscuit@sakamoto.dev";
defaultBranch = "master";
};
terminal = {
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
termSize = "11";
termShell = "zsh";
termShell = "fish";
shellAliases = {
ls = "ls --color=auto";
update = ''
if [[ $(uname) == "Darwin" ]]; then
sudo darwin-rebuild switch --flake ~/.config/nixos#macos
else
sudo nixos-rebuild switch --flake ~/.config/nixos#desktop && home-manager switch --flake ~/.config/nixos#desktop
sudo nixos-rebuild switch --flake ~/.config/nixos#desktop --impure && home-manager switch --flake ~/.config/nixos#desktop --impure
fi
'';
agu = "pkill gjs & ags run ~/.config/nixos/pkgs/ags/biscuit/app.ts & disown (jobs -p) &";