diff --git a/hugo/public/categories/index.html b/hugo/public/categories/index.html deleted file mode 100644 index 97c902d..0000000 --- a/hugo/public/categories/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - Categories – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-

Categories

- - - - - - -
- -
-
- - -
-
-
-
-
- - - -
- - - diff --git a/hugo/public/categories/index.xml b/hugo/public/categories/index.xml deleted file mode 100644 index fc82f5c..0000000 --- a/hugo/public/categories/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Categories on Option Documentation for Rasmus Kirk's Nix Modules - https://rasmus-kirk.github.io/nix-modules/categories/ - Recent content in Categories on Option Documentation for Rasmus Kirk's Nix Modules - Hugo -- gohugo.io - en-us - - diff --git a/hugo/public/css/about.css b/hugo/public/css/about.css deleted file mode 100644 index 6c12ba4..0000000 --- a/hugo/public/css/about.css +++ /dev/null @@ -1,26 +0,0 @@ -/* About/bio section */ -.about__logo { - height: 1.5rem; -} - -.about__title { - display: inline; - vertical-align: top; -} - -.about__title::before { - content: none; -} - -/* Social media links */ -.aside__social-links { - padding: 0; -} - -.aside__social-links li { - display: inline-block; -} - -.aside__social-links li::marker { - content: none; -} diff --git a/hugo/public/css/colours.css b/hugo/public/css/colours.css deleted file mode 100644 index 4326985..0000000 --- a/hugo/public/css/colours.css +++ /dev/null @@ -1,17 +0,0 @@ -:root { - /* Background */ - --bg: var(--base00); - --off-bg: var(--base01); - --inner-bg: var(--base02); - - /* Text */ - --fg: var(--base05); - --off-fg: var(--base04); - --muted: var(--base03); - --link: var(--base0D); - --hover: var(--base0C); - --highlight: var(--base0A); - - /* Logo */ - --logo: var(--base0B); -} diff --git a/hugo/public/css/custom.css b/hugo/public/css/custom.css deleted file mode 100644 index 71949ed..0000000 --- a/hugo/public/css/custom.css +++ /dev/null @@ -1 +0,0 @@ -/* Override this file to customise the theme's CSS for your site */ diff --git a/hugo/public/css/footer.css b/hugo/public/css/footer.css deleted file mode 100644 index 3e84188..0000000 --- a/hugo/public/css/footer.css +++ /dev/null @@ -1,7 +0,0 @@ -.page__footer { - color: var(--off-fg); -} - -.page__footer p { - margin: 0; -} diff --git a/hugo/public/css/header.css b/hugo/public/css/header.css deleted file mode 100644 index cab735b..0000000 --- a/hugo/public/css/header.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Main menu */ -.main-nav ul { - display: flex; - flex-flow: row wrap; - justify-content: flex-start; - margin: 0; - padding: 0 0 0.25rem 0; - gap: 0rem 1.5rem; -} - -.main-nav li { - padding-top: 0.25rem; - margin-left: 1rem; - text-transform: lowercase; -} - -.main-nav li::marker { - content: "./"; -} - diff --git a/hugo/public/css/layout.css b/hugo/public/css/layout.css deleted file mode 100644 index d249166..0000000 --- a/hugo/public/css/layout.css +++ /dev/null @@ -1,57 +0,0 @@ -/* 1rem = 16px by default */ - -.page { - max-width: 64rem; - margin: 1rem auto; - display: grid; - grid-template-areas: - "header" - "body" - "aside" - "footer"; - grid-template-columns: minmax(0, 1fr); /* https://css-tricks.com/preventing-a-grid-blowout/ */ - grid-row-gap: 2rem; -} - -@media (min-width: 45rem) { - .page { - grid-template-areas: - "header header" - "body aside" - "footer footer"; - grid-template-columns: minmax(0, 1fr) 15rem; - grid-column-gap: 2rem; - } -} - -/* Header */ -.page__header { - grid-area: header; - display: flex; -} - -.page__logo { - flex-shrink: 0; -} - -.page__nav { - flex-grow: 1; -} - -/* Body + aside */ -.page__body { - grid-area: body; - background-color: var(--off-bg); - box-shadow: 0 0 0 1rem var(--off-bg); - overflow-wrap: break-word; -} - -.page__aside { - grid-area: aside; - color: var(--off-fg); -} - -/* Footer */ -.page__footer { - grid-area: footer; -} diff --git a/hugo/public/css/logo.css b/hugo/public/css/logo.css deleted file mode 100644 index 368fff4..0000000 --- a/hugo/public/css/logo.css +++ /dev/null @@ -1,37 +0,0 @@ -.page__logo { - padding: 0; - margin: 0; - font-weight: inherit; - color: var(--bg); -} - -.page__logo:before { - content: none; -} - -.page__logo-inner { - display: block; - background: var(--logo); - opacity: 0.90; - padding: 0.25rem; -} - -a.page__logo-inner:link, a.page__logo-inner:visited { - color: inherit; - text-decoration: inherit; -} - -a.page__logo-inner:hover, -a.page__logo-inner:active { - opacity: 1; -} - -.page__logo-inner:before { - content: "["; - color: var(--bg); -} - -.page__logo-inner:after { - content: "] $"; - color: var(--bg); -} diff --git a/hugo/public/css/palettes/apprentice.css b/hugo/public/css/palettes/apprentice.css deleted file mode 100644 index 303d1c7..0000000 --- a/hugo/public/css/palettes/apprentice.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Apprentice by romainl */ - -:root { - --base00: #262626; - --base01: #AF5F5F; - --base02: #5F875F; - --base03: #87875F; - --base04: #5F87AF; - --base05: #5F5F87; - --base06: #5F8787; - --base07: #6C6C6C; - --base08: #444444; - --base09: #FF8700; - --base0A: #87AF87; - --base0B: #FFFFAF; - --base0C: #87AFD7; - --base0D: #8787AF; - --base0E: #5FAFAF; - --base0F: #BCBCBC; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/base16-dark.css b/hugo/public/css/palettes/base16-dark.css deleted file mode 100644 index cb1ec1d..0000000 --- a/hugo/public/css/palettes/base16-dark.css +++ /dev/null @@ -1,22 +0,0 @@ -/* base16 default dark - * https://github.com/chriskempson/base16-default-schemes - */ - -:root { - --base00: #181818; - --base01: #282828; - --base02: #383838; - --base03: #585858; - --base04: #b8b8b8; - --base05: #d8d8d8; - --base06: #e8e8e8; - --base07: #f8f8f8; - --base08: #ab4642; - --base09: #dc9656; - --base0A: #f7ca88; - --base0B: #a1b56c; - --base0C: #86c1b9; - --base0D: #7cafc2; - --base0E: #ba8baf; - --base0F: #a16946; -} diff --git a/hugo/public/css/palettes/base16-light.css b/hugo/public/css/palettes/base16-light.css deleted file mode 100644 index bcbbb5a..0000000 --- a/hugo/public/css/palettes/base16-light.css +++ /dev/null @@ -1,22 +0,0 @@ -/* base16 default light - * https://github.com/chriskempson/base16-default-schemes - */ - -:root { - --base00: #f8f8f8; - --base01: #e8e8e8; - --base02: #d8d8d8; - --base03: #b8b8b8; - --base04: #585858; - --base05: #383838; - --base06: #282828; - --base07: #181818; - --base08: #ab4642; - --base09: #dc9656; - --base0A: #f7ca88; - --base0B: #a1b56c; - --base0C: #86c1b9; - --base0D: #7cafc2; - --base0E: #ba8baf; - --base0F: #a16946; -} diff --git a/hugo/public/css/palettes/dracula.css b/hugo/public/css/palettes/dracula.css deleted file mode 100644 index 66f1abc..0000000 --- a/hugo/public/css/palettes/dracula.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Dracula by Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) */ - -:root { - --base00: #282936; - --base01: #3a3c4e; - --base02: #4d4f68; - --base03: #626483; - --base04: #62d6e8; - --base05: #e9e9f4; - --base06: #f1f2f8; - --base07: #f7f7fb; - --base08: #ea51b2; - --base09: #b45bcf; - --base0A: #00f769; - --base0B: #ebff87; - --base0C: #a1efe4; - --base0D: #62d6e8; - --base0E: #b45bcf; - --base0F: #00f769; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/gruvbox-dark.css b/hugo/public/css/palettes/gruvbox-dark.css deleted file mode 100644 index 1d60bd9..0000000 --- a/hugo/public/css/palettes/gruvbox-dark.css +++ /dev/null @@ -1,23 +0,0 @@ -/* gruvbox dark - * https://github.com/morhetz/gruvbox - * base16: https://github.com/dawikur/base16-gruvbox-scheme - */ - -:root { - --base00: #282828; - --base01: #3c3836; - --base02: #504945; - --base03: #665c54; - --base04: #bdae93; - --base05: #d5c4a1; - --base06: #ebdbb2; - --base07: #fbf1c7; - --base08: #fb4934; - --base09: #fe8019; - --base0A: #fabd2f; - --base0B: #b8bb26; - --base0C: #8ec07c; - --base0D: #83a598; - --base0E: #d3869b; - --base0F: #d65d0e; -} diff --git a/hugo/public/css/palettes/gruvbox-light.css b/hugo/public/css/palettes/gruvbox-light.css deleted file mode 100644 index f786cf0..0000000 --- a/hugo/public/css/palettes/gruvbox-light.css +++ /dev/null @@ -1,23 +0,0 @@ -/* gruvbox light - * https://github.com/morhetz/gruvbox - * base16: https://github.com/dawikur/base16-gruvbox-scheme - */ - -:root { - --base00: #fbf1c7; - --base01: #ebdbb2; - --base02: #d5c4a1; - --base03: #bdae93; - --base04: #665c54; - --base05: #504945; - --base06: #3c3836; - --base07: #282828; - --base08: #9d0006; - --base09: #af3a03; - --base0A: #b57614; - --base0B: #79740e; - --base0C: #427b58; - --base0D: #076678; - --base0E: #8f3f71; - --base0F: #d65d0e; -} diff --git a/hugo/public/css/palettes/material.css b/hugo/public/css/palettes/material.css deleted file mode 100644 index 60bfafb..0000000 --- a/hugo/public/css/palettes/material.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Material by Nate Peterson */ - -:root { - --base00: #263238; - --base01: #2E3C43; - --base02: #314549; - --base03: #546E7A; - --base04: #B2CCD6; - --base05: #EEFFFF; - --base06: #EEFFFF; - --base07: #FFFFFF; - --base08: #F07178; - --base09: #F78C6C; - --base0A: #FFCB6B; - --base0B: #C3E88D; - --base0C: #89DDFF; - --base0D: #82AAFF; - --base0E: #C792EA; - --base0F: #FF5370; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/papercolor-dark.css b/hugo/public/css/palettes/papercolor-dark.css deleted file mode 100644 index d289932..0000000 --- a/hugo/public/css/palettes/papercolor-dark.css +++ /dev/null @@ -1,20 +0,0 @@ -/* PaperColor Dark by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ - -:root { - --base00: #1c1c1c; - --base01: #af005f; - --base02: #5faf00; - --base03: #d7af5f; - --base04: #5fafd7; - --base05: #808080; - --base06: #d7875f; - --base07: #d0d0d0; - --base08: #585858; - --base09: #5faf5f; - --base0A: #afd700; - --base0B: #af87d7; - --base0C: #ffaf00; - --base0D: #ff5faf; - --base0E: #00afaf; - --base0F: #5f8787; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/papercolor-light.css b/hugo/public/css/palettes/papercolor-light.css deleted file mode 100644 index 7eeb7f5..0000000 --- a/hugo/public/css/palettes/papercolor-light.css +++ /dev/null @@ -1,20 +0,0 @@ -/* PaperColor Light by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ - -:root { - --base00: #eeeeee; - --base01: #af0000; - --base02: #008700; - --base03: #5f8700; - --base04: #0087af; - --base05: #444444; - --base06: #005f87; - --base07: #878787; - --base08: #bcbcbc; - --base09: #d70000; - --base0A: #d70087; - --base0B: #8700af; - --base0C: #d75f00; - --base0D: #d75f00; - --base0E: #005faf; - --base0F: #005f87; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/solarized-dark.css b/hugo/public/css/palettes/solarized-dark.css deleted file mode 100644 index a646595..0000000 --- a/hugo/public/css/palettes/solarized-dark.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Solarized Dark by Ethan Schoonover (modified by aramisgithub) */ - -:root { - --base00: #002b36; - --base01: #073642; - --base02: #586e75; - --base03: #657b83; - --base04: #839496; - --base05: #93a1a1; - --base06: #eee8d5; - --base07: #fdf6e3; - --base08: #dc322f; - --base09: #cb4b16; - --base0A: #b58900; - --base0B: #859900; - --base0C: #2aa198; - --base0D: #268bd2; - --base0E: #6c71c4; - --base0F: #d33682; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/solarized-light.css b/hugo/public/css/palettes/solarized-light.css deleted file mode 100644 index dfb92c1..0000000 --- a/hugo/public/css/palettes/solarized-light.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Solarized Light by Ethan Schoonover (modified by aramisgithub) */ - -:root { - --base00: #fdf6e3; - --base01: #eee8d5; - --base02: #93a1a1; - --base03: #839496; - --base04: #657b83; - --base05: #586e75; - --base06: #073642; - --base07: #002b36; - --base08: #dc322f; - --base09: #cb4b16; - --base0A: #b58900; - --base0B: #859900; - --base0C: #2aa198; - --base0D: #268bd2; - --base0E: #6c71c4; - --base0F: #d33682; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/tender.css b/hugo/public/css/palettes/tender.css deleted file mode 100644 index 77fbe87..0000000 --- a/hugo/public/css/palettes/tender.css +++ /dev/null @@ -1,20 +0,0 @@ -/* tender by Jacobo Tabernero (https://github/com/jacoborus/tender.vim) */ - -:root { - --base00: #282828; - --base01: #383838; - --base02: #484848; - --base03: #4c4c4c; - --base04: #b8b8b8; - --base05: #eeeeee; - --base06: #e8e8e8; - --base07: #feffff; - --base08: #f43753; - --base09: #dc9656; - --base0A: #ffc24b; - --base0B: #c9d05c; - --base0C: #73cef4; - --base0D: #b3deef; - --base0E: #d3b987; - --base0F: #a16946; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/tokyo-night-dark.css b/hugo/public/css/palettes/tokyo-night-dark.css deleted file mode 100644 index 760d2fe..0000000 --- a/hugo/public/css/palettes/tokyo-night-dark.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Tokyo Night Dark by Michaël Ball */ - -:root { - --base00: #1A1B26; - --base01: #16161E; - --base02: #2F3549; - --base03: #444B6A; - --base04: #787C99; - --base05: #A9B1D6; - --base06: #CBCCD1; - --base07: #D5D6DB; - --base08: #C0CAF5; - --base09: #A9B1D6; - --base0A: #0DB9D7; - --base0B: #9ECE6A; - --base0C: #B4F9F8; - --base0D: #2AC3DE; - --base0E: #BB9AF7; - --base0F: #F7768E; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/tokyo-night-light.css b/hugo/public/css/palettes/tokyo-night-light.css deleted file mode 100644 index 66e73c8..0000000 --- a/hugo/public/css/palettes/tokyo-night-light.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Tokyo Night Light by Michaël Ball */ - -:root { - --base00: #D5D6DB; - --base01: #CBCCD1; - --base02: #DFE0E5; - --base03: #9699A3; - --base04: #4C505E; - --base05: #343B59; - --base06: #1A1B26; - --base07: #1A1B26; - --base08: #343B58; - --base09: #965027; - --base0A: #166775; - --base0B: #485E30; - --base0C: #3E6968; - --base0D: #34548A; - --base0E: #5A4A78; - --base0F: #8C4351; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/windows-95-light.css b/hugo/public/css/palettes/windows-95-light.css deleted file mode 100644 index 70cfeeb..0000000 --- a/hugo/public/css/palettes/windows-95-light.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Windows 95 Light by Fergus Collins (https://github.com/C-Fergus) */ - -:root { - --base00: #fcfcfc; - --base01: #e0e0e0; - --base02: #c4c4c4; - --base03: #a8a8a8; - --base04: #7e7e7e; - --base05: #545454; - --base06: #2a2a2a; - --base07: #000000; - --base08: #a80000; - --base09: #fcfc54; - --base0A: #a85400; - --base0B: #00a800; - --base0C: #00a8a8; - --base0D: #0000a8; - --base0E: #a800a8; - --base0F: #54fc54; -} \ No newline at end of file diff --git a/hugo/public/css/palettes/windows-95.css b/hugo/public/css/palettes/windows-95.css deleted file mode 100644 index 5b44cf8..0000000 --- a/hugo/public/css/palettes/windows-95.css +++ /dev/null @@ -1,20 +0,0 @@ -/* Windows 95 by Fergus Collins (https://github.com/C-Fergus) */ - -:root { - --base00: #000000; - --base01: #1C1C1C; - --base02: #383838; - --base03: #545454; - --base04: #7e7e7e; - --base05: #a8a8a8; - --base06: #d2d2d2; - --base07: #fcfcfc; - --base08: #fc5454; - --base09: #a85400; - --base0A: #fcfc54; - --base0B: #54fc54; - --base0C: #54fcfc; - --base0D: #5454fc; - --base0E: #fc54fc; - --base0F: #00a800; -} \ No newline at end of file diff --git a/hugo/public/css/risotto.css b/hugo/public/css/risotto.css deleted file mode 100644 index dcb5a96..0000000 --- a/hugo/public/css/risotto.css +++ /dev/null @@ -1,12 +0,0 @@ -@import 'colours.css'; -@import 'typography.css'; -@import 'layout.css'; -@import 'header.css'; -@import 'logo.css'; -@import 'about.css'; -@import 'footer.css'; - -body { - background-color: var(--bg); - color: var(--fg); -} diff --git a/hugo/public/css/typography.css b/hugo/public/css/typography.css deleted file mode 100644 index 6369cf0..0000000 --- a/hugo/public/css/typography.css +++ /dev/null @@ -1,215 +0,0 @@ -/* Fonts */ -:root { - --font-monospace: "Fira Mono", monospace; -} - -body { - font-family: var(--font-monospace); - font-size: 16px; - line-height: 1.5rem; -} - -/* Headings */ -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 1rem; - margin: 1.5rem 0 0 0; - font-weight: 600; -} - -h1+h2, -h1+h3, -h1+h4, -h1+h5, -h1+h6, -h2+h3, -h2+h4, -h2+h5, -h2+h6, -h3+h4, -h3+h5, -h3+h6, -h4+h5, -h4+h6, -h5+h6 { - margin: 0; -} - -h1:before { content: "# "; } -h2:before { content: "## "; } -h3:before { content: "### "; } -h4:before { content: "#### "; } -h5:before { content: "##### "; } -h6:before { content: "###### "; } - -h1:before, -h2:before, -h3:before, -h4:before, -h5:before, -h6:before { - color: var(--muted); -} - -h1:first-child { - margin-top: 0; -} - -/* Paragraphs */ -p { - margin: 0 0 1.5rem 0; -} - -/* Links */ - -a:link, a:visited { - color: var(--link); -} - -a:hover, a:active, a.active { - color: var(--hover); -} - -/* Lists */ -ul { - margin: 0 0 1.5rem 0; - padding-left: 1.25rem; -} - -ol { - margin: 0 0 1.5rem 0; - padding-left: 1.75rem; -} - -ul ul, -ul ol, -ol ul, -ol ol { - margin: 0; -} - -ul li::marker { - content: '∗\00A0'; - color: var(--muted); -} - -ol li::marker { - color: var(--muted); -} - -dt { - margin: 0; - font-weight: bold; -} - -dd { - margin: 0 0 0 1.5rem; - font-style: italic; -} - -dd + dt { - margin-top: 1.5rem; -} - -dl { - margin: 0 0 1.5rem 0; -} - -/* Blockquotes */ -blockquote { - position: relative; - margin: 0 0 1.5rem 1.5rem; -} - -blockquote::before { - position: absolute; - left: -1.5rem; - content: ">"; - color: var(--muted); -} - -.twitter-tweet::before { - content: "\f099"; - font-family: "Font Awesome 5 Brands"; - font-weight: 400; -} - -/* Code */ -pre, -code, -kbd, -samp { - background: var(--inner-bg) !important; - font-family: var(--font-monospace); - color: var(--off-fg); -} - -pre { - overflow-x: auto; - padding: 1.5rem; - margin: 0 0 1.5rem 0; -} - -/* Emphasis */ -b, -strong { - font-weight: 600; -} - -/* Highlighting */ -::selection, -mark { - background-color: var(--highlight); - color: var(--bg); -} - -/* Other typographic elements */ -hr { - border: 0; - margin-bottom: 1.5rem; -} - -hr:after { - content: '---'; - color: var(--muted); -} - - -/* Prevent super/sub from affecting line height */ -sup, sub { - vertical-align: baseline; - position: relative; - top: -0.25rem; - font-size: unset; -} -sub { - top: 0.25rem; -} - -/* Tables */ -table { - border-spacing: 0; - margin: 0 0 1.5rem 0; - overflow-wrap: anywhere; -} -th, td { - padding: 0 .75rem; - vertical-align: top; -} -th:first-child, td:first-child { - padding-left: 0; -} -th { - text-align: inherit; -} - -/* Figures */ -img { - max-width: 100%; - height: auto; -} - diff --git a/hugo/public/header/index.html b/hugo/public/header/index.html deleted file mode 100644 index 6992857..0000000 --- a/hugo/public/header/index.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - Options Documentation – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-
-

Options Documentation

-
- -
- -
-
- -
- -
-
- - -
-
-
- - -

- By Rasmus Kirk - -

- - - - -
-
- - - -
- - - diff --git a/hugo/public/home-manager/index.html b/hugo/public/home-manager/index.html deleted file mode 100644 index 73ba53d..0000000 --- a/hugo/public/home-manager/index.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - Options Documentation – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-
-

Options Documentation

-
- -
-

kirk.fonts.enable

-

Whether to enable Enable my fonts, namely fira-code with nerdfonts. Note that this is required for kirk modules that use the nerdfont icons to function properly..

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.foot.alpha

-

Alpha value of the foot terminal.

-

Type: -floating point number

-

Default

-
0.85
-

kirk.foot.colorscheme

-

A colorscheme attribute set.

-

Type: -attribute set

-

Default

-
{"bg":"282828","black":"1d2021","blue":"458588","bright":{"black":"928374","blue":"83a598","green":"b8bb26","orange":"fe8019","purple":"d3869b","red":"fb4934","teal":"8ec07c","white":"fbf1c7","yellow":"fabd2f"},"fg":"ebdbb2","green":"98971a","orange":"d65d0e","purple":"b16286","red":"cc241d","teal":"689d6a","white":"d5c4a1","yellow":"d79921"}
-

kirk.foot.enable

-

Whether to enable foot terminal emulator.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.foot.enableKeyBindings

-

Whether or not to enable my keybindings.

-

Type: -boolean

-

Default

-
true
-

kirk.foot.fontSize

-

Font size of the terminal.

-

Type: -signed integer

-

Default

-
15
-

kirk.fzf.colorscheme

-

A colorscheme attribute set.

-

Type: -attribute set

-

Default

-
{"bg":"282828","black":"1d2021","blue":"458588","bright":{"black":"928374","blue":"83a598","green":"b8bb26","orange":"fe8019","purple":"d3869b","red":"fb4934","teal":"8ec07c","white":"fbf1c7","yellow":"fabd2f"},"fg":"ebdbb2","green":"98971a","orange":"d65d0e","purple":"b16286","red":"cc241d","teal":"689d6a","white":"d5c4a1","yellow":"d79921"}
-

kirk.fzf.enable

-

Whether to enable foot terminal emulator.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.fzf.enableZshIntegration

-

Whether to enable zsh integration.

-

Type: -boolean

-

Default

-
true
-

kirk.git.enable

-

Whether to enable git.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.git.userEmail

-

What email address to use for git.

-

Type: -string

-

kirk.git.userName

-

Username to use for git.

-

Type: -string

-

kirk.gruvbox.colorscheme

-

A definition for the gruvbox theme.

-

Type: -attribute set

-

Default

-
{"bg":"282828","black":"1d2021","blue":"458588","bright":{"black":"928374","blue":"83a598","green":"b8bb26","orange":"fe8019","purple":"d3869b","red":"fb4934","teal":"8ec07c","white":"fbf1c7","yellow":"fabd2f"},"fg":"ebdbb2","green":"98971a","orange":"d65d0e","purple":"b16286","red":"cc241d","teal":"689d6a","white":"d5c4a1","yellow":"d79921"}
-

kirk.helix.enable

-

Whether to enable helix text editor.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.helix.extraPackages

-

Extra packages to install, for example LSP’s.

-

Type: -list of package

-

Default

-
[]
-

kirk.helix.installMostLsps

-

Whether or not to install most of the LSP’s that helix supports.

-

Type: -boolean

-

Default

-
true
-

kirk.homeManagerScripts.configDir

-

Path to the home-manager configuration.

-

Type: -null or path

-

Default

-
null
-

kirk.homeManagerScripts.enable

-

Whether to enable home manager scripts.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.homeManagerScripts.machine

-

Path to the home-manager configuration.

-

Type: -null or string

-

kirk.jiten.dailyWord

-

Enable daily japanese word prompt.

-

Type: -boolean

-

Default

-
true
-

kirk.jiten.enable

-

Whether to enable jiten japanese dictionary.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.joshuto.enable

-

Whether to enable joshuto file manager.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.joshuto.enableZshIntegration

-

Adds the auto-cd j command to zsh.

-

Type: -boolean

-

Default

-
true
-

kirk.kakoune.enable

-

Whether to enable kakoune text editor.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.ssh.enable

-

Whether to enable ssh with extra config.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.ssh.identityPath

-

The directory containing the path to the identity file.

-

Type: -null or path

-

Default

-
null
-

kirk.terminalTools.autoUpdateTealdeer

-

Whether to auto-update tealdeer.

-

Type: -boolean

-

Default

-
true
-

kirk.terminalTools.enable

-

Whether to enable Quality of life terminal tools.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.terminalTools.enableZshIntegration

-

Whether to enable zsh integration for bat.

-

Type: -boolean

-

Default

-
true
-

kirk.terminalTools.theme

-

What syntax highlighting colorscheme to use.

-

Type: -string

-

Default

-
"gruvbox-dark"
-

kirk.terminalTools.trashCleaner.enable

-

Enable the trash-cli cleanup script

-

Type: -boolean

-

Default

-
true
-

kirk.terminalTools.trashCleaner.persistance

-

How many days a file stays in trash before getting cleaned up.

-

Type: -signed integer or floating point number

-

Default

-
30
-

kirk.userDirs.autoSortDownloads

-

Whether or not to auto-sort downloads.

-

Type: -boolean

-

Default

-
true
-

kirk.userDirs.enable

-

Whether to enable userDirs.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.zathura.colorscheme

-

A colorscheme attribute set.

-

Type: -attribute set

-

Default

-
{"bg":"282828","black":"1d2021","blue":"458588","bright":{"black":"928374","blue":"83a598","green":"b8bb26","orange":"fe8019","purple":"d3869b","red":"fb4934","teal":"8ec07c","white":"fbf1c7","yellow":"fabd2f"},"fg":"ebdbb2","green":"98971a","orange":"d65d0e","purple":"b16286","red":"cc241d","teal":"689d6a","white":"d5c4a1","yellow":"d79921"}
-

kirk.zathura.enable

-

Whether to enable foot terminal emulator.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.zathura.enableKeyBindings

-

Whether or not to enable my keybindings.

-

Type: -boolean

-

Default

-
true
-

kirk.zsh.enable

-

Whether to enable zsh configuration..

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-
-
-
- -
- -
-
- - -
-
-
- - -

- By Rasmus Kirk, - 2023-12-07 -

- - - - -
-
- - - -
- - - diff --git a/hugo/public/images/rice.svg b/hugo/public/images/rice.svg deleted file mode 100644 index 53e480c..0000000 --- a/hugo/public/images/rice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/hugo/public/index.html b/hugo/public/index.html deleted file mode 100644 index 996910e..0000000 --- a/hugo/public/index.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Option Documentation for Rasmus Kirk's Nix Modules – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
- - -
- -
-
- - -
-
-
-
-
- - - -
- - - diff --git a/hugo/public/index.xml b/hugo/public/index.xml deleted file mode 100644 index e955b08..0000000 --- a/hugo/public/index.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - Option Documentation for Rasmus Kirk's Nix Modules - https://rasmus-kirk.github.io/nix-modules/ - Recent content on Option Documentation for Rasmus Kirk's Nix Modules - Hugo -- gohugo.io - en-us - - Options Documentation - https://rasmus-kirk.github.io/nix-modules/home-manager/ - Thu, 07 Dec 2023 00:00:00 +0000 - - https://rasmus-kirk.github.io/nix-modules/home-manager/ - kirk.fonts.enable Whether to enable Enable my fonts, namely fira-code with nerdfonts. Note that this is required for kirk modules that use the nerdfont icons to function properly.. -Type: boolean -Default -false Example -true kirk.foot.alpha Alpha value of the foot terminal. -Type: floating point number -Default -0.85 kirk.foot.colorscheme A colorscheme attribute set. -Type: attribute set -Default -{"bg":"282828","black":"1d2021","blue":"458588","bright":{"black":"928374","blue":"83a598","green":"b8bb26","orange":"fe8019","purple":"d3869b","red":"fb4934","teal":"8ec07c","white":"fbf1c7","yellow":"fabd2f"},"fg":"ebdbb2","green":"98971a","orange":"d65d0e","purple":"b16286","red":"cc241d","teal":"689d6a","white":"d5c4a1","yellow":"d79921"} kirk.foot.enable Whether to enable foot terminal emulator. -Type: boolean -Default -false Example -true kirk.foot.enableKeyBindings Whether or not to enable my keybindings. - - - - Options Documentation - https://rasmus-kirk.github.io/nix-modules/nixos/ - Thu, 07 Dec 2023 00:00:00 +0000 - - https://rasmus-kirk.github.io/nix-modules/nixos/ - kirk.nixosScripts.configDir Path to the nixos configuration. -Type: path -Default -"/etc/nixos" kirk.nixosScripts.enable Whether to enable Nixos scripts -Required options: -machine . Type: boolean -Default -false Example -true kirk.nixosScripts.machine REQUIRED! The machine to run on. -Type: null or string -Default -null kirk.servarr.acmeMail REQUIRED! The ACME mail. -Type: null or string -Default -null kirk.servarr.domainName REQUIRED! The domain name to host jellyfin on. -Type: null or string -Default -null kirk.servarr.enable Whether to enable My servarr setup. - - - - - https://rasmus-kirk.github.io/nix-modules/test/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://rasmus-kirk.github.io/nix-modules/test/ - Nixos options Home manager options - - - - Options Documentation - https://rasmus-kirk.github.io/nix-modules/header/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://rasmus-kirk.github.io/nix-modules/header/ - - - - - diff --git a/hugo/public/nixos/index.html b/hugo/public/nixos/index.html deleted file mode 100644 index 714a106..0000000 --- a/hugo/public/nixos/index.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - Options Documentation – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-
-

Options Documentation

-
- -
-

kirk.nixosScripts.configDir

-

Path to the nixos configuration.

-

Type: -path

-

Default

-
"/etc/nixos"
-

kirk.nixosScripts.enable

-

Whether to enable Nixos scripts

-

Required options:

-
    -
  • machine -.
  • -
-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.nixosScripts.machine

-

REQUIRED! The machine to run on.

-

Type: -null or string

-

Default

-
null
-

kirk.servarr.acmeMail

-

REQUIRED! The ACME mail.

-

Type: -null or string

-

Default

-
null
-

kirk.servarr.domainName

-

REQUIRED! The domain name to host jellyfin on.

-

Type: -null or string

-

Default

-
null
-

kirk.servarr.enable

-

Whether to enable My servarr setup. Hosts Jellyfin on the given domain (remember domain -records/port forwarding) and hosts the following services on localhost -through a mullvad VPN:

-
    -
  • Prowlarr
  • -
  • Sonarr
  • -
  • Radarr
  • -
  • Flood/Rtorrnet
  • -
-

Required options for this module:

-
    -
  • domainName
  • -
  • acmeMail
  • -
  • mullvadAcc
  • -
-

Remember to read the options.

-

NOTE: The docker service to manage this executes the command docker container prune -f on startup for reproducibility, may cause issues -depending on your setup.

-

NOTE: This nixos module only supports the mullvad VPN, if you need -another VPN, create a PR or fork this repo! -.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.servarr.gluetun.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.jellyfin.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.jellyfin.port

-

Port of Jellyfin.

-

Type: -16 bit unsigned integer; between 0 and 65535 (both inclusive)

-

Default

-
8096
-

kirk.servarr.mediaDir

-

The location of the media directory for the services.

-

Type: -path

-

Default

-
"~/servarr"
-

kirk.servarr.mullvadAcc

-

REQUIRED! The location the file containing your mullvad account key.

-

Type: -null or path

-

Default

-
null
-

kirk.servarr.prowlarr.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.prowlarr.port

-

Port of prowlarr.

-

Type: -16 bit unsigned integer; between 0 and 65535 (both inclusive)

-

Default

-
6002
-

kirk.servarr.radarr.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.radarr.port

-

Port of radarr.

-

Type: -16 bit unsigned integer; between 0 and 65535 (both inclusive)

-

Default

-
6004
-

kirk.servarr.rflood.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.rflood.port

-

Port of rflood.

-

Type: -16 bit unsigned integer; between 0 and 65535 (both inclusive)

-

Default

-
6001
-

kirk.servarr.rflood.ulimits.enable

-

Whether to enable Enable rtorrent ulimits. I had a bug that caused rtorrent to fail -and log std::bad_alloc. Setting ulimits for this service fixed -the issue. You probably don’t want to set this unless you have -similar issues.See link below for more info:

-

https://stackoverflow.com/questions/75536471/rtorrent-docker-container-failing-to-start-saying-stdbad-alloc -.

-

Type: -boolean

-

Default

-
false
-

Example

-
true
-

kirk.servarr.rflood.ulimits.hard

-

The hard limit.

-

Type: -unsigned integer, meaning >=0

-

Default

-
1024
-

kirk.servarr.rflood.ulimits.soft

-

The soft limit.

-

Type: -unsigned integer, meaning >=0

-

Default

-
1024
-

kirk.servarr.sonarr.extraConfig

-

Extra config for the service.

-

Type: -attribute set

-

Default

-
{}
-

kirk.servarr.sonarr.port

-

Port of sonarr.

-

Type: -16 bit unsigned integer; between 0 and 65535 (both inclusive)

-

Default

-
6003
-

kirk.servarr.stateDir

-

The location of the state directory for the services.

-

Type: -path

-

Default

-
"~/.local/state"
-

kirk.servarr.timezone

-

Your timezone, used for logging purposes.

-

Type: -string

-

Default

-
"Etc/UTC"
-
-
-
- -
- -
-
- - -
-
-
- - -

- By Rasmus Kirk, - 2023-12-07 -

- - - - -
-
- - - -
- - - diff --git a/hugo/public/sitemap.xml b/hugo/public/sitemap.xml deleted file mode 100644 index 6a24c05..0000000 --- a/hugo/public/sitemap.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - https://rasmus-kirk.github.io/nix-modules/home-manager/ - 2023-12-07T00:00:00+00:00 - - https://rasmus-kirk.github.io/nix-modules/nixos/ - 2023-12-07T00:00:00+00:00 - - https://rasmus-kirk.github.io/nix-modules/test/ - 0 - - https://rasmus-kirk.github.io/nix-modules/categories/ - - https://rasmus-kirk.github.io/nix-modules/ - - https://rasmus-kirk.github.io/nix-modules/header/ - - https://rasmus-kirk.github.io/nix-modules/tags/ - - diff --git a/hugo/public/tags/index.html b/hugo/public/tags/index.html deleted file mode 100644 index 2c65c6e..0000000 --- a/hugo/public/tags/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - Tags – Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-

Tags

- - - - - - -
- -
-
- - -
-
-
-
-
- - - -
- - - diff --git a/hugo/public/tags/index.xml b/hugo/public/tags/index.xml deleted file mode 100644 index e37866b..0000000 --- a/hugo/public/tags/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Tags on Option Documentation for Rasmus Kirk's Nix Modules - https://rasmus-kirk.github.io/nix-modules/tags/ - Recent content in Tags on Option Documentation for Rasmus Kirk's Nix Modules - Hugo -- gohugo.io - en-us - - diff --git a/hugo/public/test/index.html b/hugo/public/test/index.html deleted file mode 100644 index cc8f13d..0000000 --- a/hugo/public/test/index.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - Option Documentation for Rasmus Kirk's Nix Modules - - - - - - - - - - - - - - - - - - - -
- - - -
-
-

-
- - -
- -
- -
-
- - -
-
-
- - - - - -
-
- - - -
- - -