- Add NostrVPN as a native systemd service (extracted from container) - Add VPN status detection for nostr-vpn in backend vpn.rs - ISO build extracts nvpn binary from container image - First-boot auto-configures NostrVPN with node's Nostr identity - Change Claude Auth from login iframe to API key input field - Remove duplicate ChangePasswordSection from Settings.vue - FIPS and Routstr remain as installable container apps Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
262 B
Vue
12 lines
262 B
Vue
<script setup lang="ts">
|
|
import AccountSection from '@/views/settings/AccountSection.vue'
|
|
import SystemSection from '@/views/settings/SystemSection.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="pb-6">
|
|
<AccountSection />
|
|
<SystemSection />
|
|
</div>
|
|
</template>
|