formatting

This commit is contained in:
Nathan McCarty 2025-04-04 17:18:52 -04:00
parent 14d0fb13ed
commit 40d45a8abd
3 changed files with 8 additions and 8 deletions

View file

@ -9,9 +9,8 @@
enable = true; enable = true;
}; };
# Setup fish init # Setup fish init
programs.fish.shellInit = programs.fish.shellInit = ''
''
set -x SSH_AUTH_SOCK $XDG_RUNTIME_DIR/ssh-agent set -x SSH_AUTH_SOCK $XDG_RUNTIME_DIR/ssh-agent
ssh-add ssh-add
''; '';
} }

View file

@ -18,9 +18,11 @@
base_domain = "tailnet.stranger.systems"; base_domain = "tailnet.stranger.systems";
magic_dns = true; magic_dns = true;
extra_records = [ extra_records = [
{name = "hub.tailnet.stranger.systems"; {
type = "A"; name = "hub.tailnet.stranger.systems";
value = "100.64.0.3";} type = "A";
value = "100.64.0.3";
}
]; ];
}; };
}; };

View file

@ -7,8 +7,7 @@
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Filesystem types # Filesystem types
f2fs-tools f2fs-tools
exfatprogs exfatprogs
]; ];
} }