Correct grammar in the collective's name

You know that moment when you're learning a languaged and getting the
grammar all wrong? No? Niether do I.

resolves #6
This commit is contained in:
Fiscal Velvet Poet 2024-01-10 01:28:40 +10:00
parent 7a263df6d2
commit c3823d0cfb
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47
13 changed files with 30 additions and 30 deletions

View file

@ -1,7 +1,7 @@
ANARCHIST LICENSE ANARCHIST LICENSE
Version 1.0, 1 May, 2021 Version 1.0, 1 May, 2021
Copyright © 2023 Reciproka Kolectiva Copyright © 2024 Reciproka Kolektivo
This is Anarchist software, released for free use by individuals and This is Anarchist software, released for free use by individuals and
organizations that do not operate by capitalist principles. organizations that do not operate by capitalist principles.

View file

@ -1,10 +1,10 @@
Reciproka Ops Reciproka Kolektivo Ops
============= =======================
Colmena_ deployment configuration for services hosted by `Reciproka Kolectiva`_ services. Colmena_ deployment configuration for services hosted by `Reciproka Kolektivo`_ services.
The canonical home for this repo is The canonical home for this repo is
https://reciproka.dev/reciproka/reciproka-ops https://reciproka.dev/reciproka/reciproka-ops
.. _Colmena: https://colmena.cli.rs/ .. _Colmena: https://colmena.cli.rs/
.. _Reciproka Kolectiva: https://reciproka.co/ .. _Reciproka Kolektivo: https://reciproka.co/

View file

@ -1,4 +1,4 @@
# Configuration common to all Reciproka Kolectiva Linode VMs # Configuration common to all Reciproka Kolektivo Linode VMs
{ {
config, config,
pkgs, pkgs,

View file

@ -25,7 +25,7 @@ in {
// { // {
colmena = { colmena = {
meta = { meta = {
description = "NixOS deployment for Reciproka Kolectiva"; description = "NixOS deployment for Reciproka Kolektivo";
name = "reciproka-ops"; name = "reciproka-ops";
nixpkgs = import nixpkgs { nixpkgs = import nixpkgs {
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -1,4 +1,4 @@
# Configuration common to all Reciproka Kolectiva servers # Configuration common to all Reciproka Kolektivo servers
{config, ...}: { {config, ...}: {
# Program defaults for all hosts # Program defaults for all hosts
programs.bash = { programs.bash = {

View file

@ -1,4 +1,4 @@
# NixOS configuration for deploying the Reciproka Kolectiva website # NixOS configuration for deploying the Reciproka Kolektivo website
{ {
self, self,
config, config,

View file

@ -1,4 +1,4 @@
# Configuration common to all Reciproka Kolectiva servers # Configuration common to all Reciproka Kolektivo servers
{ {
config, config,
pkgs, pkgs,

View file

@ -157,7 +157,7 @@
set undodir=/tmp/.vim-undo-dir set undodir=/tmp/.vim-undo-dir
set undofile set undofile
" Reciproka Kolectiva Markdown environment " Reciproka Kolektivo Markdown environment
function! MarkdownSettings() function! MarkdownSettings()
set textwidth=79 set textwidth=79
set spell spelllang=en_au set spell spelllang=en_au
@ -165,7 +165,7 @@
autocmd BufNewFile,BufFilePre,BufRead *.mdwn :call MarkdownSettings() autocmd BufNewFile,BufFilePre,BufRead *.mdwn :call MarkdownSettings()
autocmd BufNewFile,BufFilePre,BufRead *.md :call MarkdownSettings() autocmd BufNewFile,BufFilePre,BufRead *.md :call MarkdownSettings()
" Reciproka Kolectiva ReStructured Text environment " Reciproka Kolektivo ReStructured Text environment
function! ReStructuredSettings() function! ReStructuredSettings()
set textwidth=79 set textwidth=79
set spell spelllang=en_au set spell spelllang=en_au
@ -176,14 +176,14 @@
autocmd BufNewFile,BufFilePre,BufRead *.rst :call ReStructuredSettings() autocmd BufNewFile,BufFilePre,BufRead *.rst :call ReStructuredSettings()
autocmd BufNewFile,BufFilePre,BufRead *.txt :call ReStructuredSettings() autocmd BufNewFile,BufFilePre,BufRead *.txt :call ReStructuredSettings()
" Reciproka Kolectiva LaTeX environment: " Reciproka Kolektivo LaTeX environment:
function! LaTeXSettings() function! LaTeXSettings()
set textwidth=79 set textwidth=79
set spell spelllang=en_au set spell spelllang=en_au
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.tex :call LaTeXSettings() autocmd BufNewFile,BufFilePre,BufRead *.tex :call LaTeXSettings()
" Settings for Reciproka Kolectiva Haskell environment: " Settings for Reciproka Kolektivo Haskell environment:
function! HaskellSettings() function! HaskellSettings()
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
@ -192,7 +192,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.hs :call HaskellSettings() autocmd BufNewFile,BufFilePre,BufRead *.hs :call HaskellSettings()
" Settings for Reciproka Kolectiva Nix environment: " Settings for Reciproka Kolektivo Nix environment:
function! NixSettings() function! NixSettings()
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
@ -202,7 +202,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.nix :call NixSettings() autocmd BufNewFile,BufFilePre,BufRead *.nix :call NixSettings()
" Settings for Reciproka Kolectiva Cue environment: " Settings for Reciproka Kolektivo Cue environment:
function! CueSettings() function! CueSettings()
set noexpandtab set noexpandtab
set tabstop=2 set tabstop=2
@ -212,7 +212,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.cue :call CueSettings() autocmd BufNewFile,BufFilePre,BufRead *.cue :call CueSettings()
" Settings for Reciproka Kolectiva Rust environment: " Settings for Reciproka Kolektivo Rust environment:
function! RustSettings() function! RustSettings()
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4
@ -222,7 +222,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.rs :call RustSettings() autocmd BufNewFile,BufFilePre,BufRead *.rs :call RustSettings()
" Settings for Reciproka Kolectiva Crystal environment: " Settings for Reciproka Kolektivo Crystal environment:
function! CrystalSettings() function! CrystalSettings()
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
@ -232,7 +232,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.cr :call CrystalSettings() autocmd BufNewFile,BufFilePre,BufRead *.cr :call CrystalSettings()
" Settings for Reciproka Kolectiva Golang environment: " Settings for Reciproka Kolektivo Golang environment:
function! GoSettings() function! GoSettings()
set tabstop=7 set tabstop=7
set shiftwidth=7 set shiftwidth=7
@ -240,7 +240,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.go :call GoSettings() autocmd BufNewFile,BufFilePre,BufRead *.go :call GoSettings()
" Settings for Reciproka Kolectiva Python environment: " Settings for Reciproka Kolektivo Python environment:
function! PythonSettings() function! PythonSettings()
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4
@ -250,7 +250,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.py :call PythonSettings() autocmd BufNewFile,BufFilePre,BufRead *.py :call PythonSettings()
" Reciproka Kolectiva Mutt environment " Reciproka Kolektivo Mutt environment
function! MuttSettings() function! MuttSettings()
set textwidth=79 set textwidth=79
set spell spelllang=en_au set spell spelllang=en_au
@ -261,7 +261,7 @@
autocmd BufNewFile,BufFilePre,BufRead mutt-* :call MuttSettings() autocmd BufNewFile,BufFilePre,BufRead mutt-* :call MuttSettings()
autocmd BufNewFile,BufFilePre,BufRead neomutt-* :call MuttSettings() autocmd BufNewFile,BufFilePre,BufRead neomutt-* :call MuttSettings()
" Settings for Reciproka Kolectiva C environment: " Settings for Reciproka Kolektivo C environment:
function! CSettings() function! CSettings()
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
@ -270,7 +270,7 @@
endfunction endfunction
autocmd BufNewFile,BufFilePre,BufRead *.c :call CSettings() autocmd BufNewFile,BufFilePre,BufRead *.c :call CSettings()
" Settings for Reciproka Kolectiva YAML environment: " Settings for Reciproka Kolektivo YAML environment:
function! YAMLSettings() function! YAMLSettings()
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
@ -284,7 +284,7 @@
autocmd BufNewFile,BufFilePre,BufRead *.yaml :call YAMLSettings() autocmd BufNewFile,BufFilePre,BufRead *.yaml :call YAMLSettings()
autocmd BufNewFile,BufFilePre,BufRead *.yml :call YAMLSettings() autocmd BufNewFile,BufFilePre,BufRead *.yml :call YAMLSettings()
" Settings for Reciproka Kolectiva Bash environment: " Settings for Reciproka Kolektivo Bash environment:
function! BashSettings() function! BashSettings()
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4

View file

@ -1,4 +1,4 @@
# Nix configuration for the Reciproka Forgejo service # Nix configuration for the Reciproka Kolectivo Forgejo service
{ {
config, config,
pkgs, pkgs,
@ -10,7 +10,7 @@
in { in {
services.forgejo = { services.forgejo = {
enable = true; # Enable Forgejo enable = true; # Enable Forgejo
appName = "Reciproka Kolectiva: Forgejo Service"; # Give the site a name appName = "Reciproka Kolektivo: Forgejo Service"; # Give the site a name
database = { database = {
type = "postgres"; # Database type type = "postgres"; # Database type
passwordFile = config.age.secrets.forgejo.path; passwordFile = config.age.secrets.forgejo.path;

View file

@ -1,4 +1,4 @@
# Nix configuration for deploying the Reciproka Kolectiva website # Nix configuration for deploying the Reciproka Kolektivo website
{ {
self, self,
config, config,

View file

@ -1,4 +1,4 @@
# Configuration common to all Reciproka Kolectiva servers # Configuration common to all Reciproka Kolektivo servers
{ {
config, config,
pkgs, pkgs,

View file

@ -1,4 +1,4 @@
# User configuration common to all Reciproka Kolectiva servers # User configuration common to all Reciproka Kolektivo servers
{ {
config, config,
pkgs, pkgs,

View file

@ -1,4 +1,4 @@
# Configuration common to all Reciproka Kolectiva servers # Configuration common to all Reciproka Kolektivo servers
{ {
config, config,
pkgs, pkgs,