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
+9 -4
View File
@@ -4,15 +4,20 @@
timezone = "America/Chicago";
vpn = {
vpnEnable = true;
vpnEnable = false;
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 = "18";
termShell = "zsh";
termShell = "fish";
shellAliases = {
ls = "ls --color=auto";
update = ''
@@ -20,7 +25,7 @@
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
'
'';