website/.stversions/.trash/post-1~20251223-132129.mdx
2026-01-04 14:04:14 -05:00

41 lines
771 B
Text

---
title: "Generating an SSH Resident Key"
author: "ArgentumCation"
layout: ../../layouts/Layout.astro
pubDate: "19 Mar, 2023"
slug: "post-1"
---
import { Accordion, AccordionItem } from "accessible-astro-components";
## Here's how to create a resident SSH Key using a security key
```bash
ssh-keygen -t ed25519-sk -Oresident
```
## If that one doesn't work,
```bash
ssh-keygen -t ed25519-sk -Oresident -Oapplication=ssh:key
```
{
// ```js
// import { defineConfig } from "astro/config";
// import mdx from "@astrojs/mdx";
// export default defineConfig({
// markdown: {
// syntaxHighlight: "prism",
// },
// integrations: [
// mdx({
// // Markdown config now ignored
// extendMarkdownConfig: true,
// // No `remarkPlugins` applied
// }),
// ],
// });
// ```
}