Compare commits

...

3 Commits

Author SHA1 Message Date
Ryan Rix d12c17bc68 nip+tuck 2024-02-17 21:14:01 -08:00
Ryan Rix 9986d6be14 strip arcology-fastapi from deployment stuff 2024-02-17 21:13:38 -08:00
Ryan Rix bd354ae475 Fix metadata tag 2024-02-17 21:13:28 -08:00
3 changed files with 5 additions and 6 deletions

View File

@ -7,7 +7,7 @@
* The Arcology Project
[[id:1d917282-ecf4-4d4c-ba49-628cbb4bb8cc][The Arcology Project]] is the social and layer of my [[id:60f710b2-6a1f-44be-bc13-dfe01e46d4e3][Concept Operating System]]'s [[id:knowledge_base][Knowledge Management]] system. It is a web publishing platform built to present my literate programming platform and my public knowledge. The goal, in short, is to be able to publish and link to any node in a set of [[id:1fb8fb45-fac5-4449-a347-d55118bb377e][org-mode]] documents. When someone asks me "hey how do I do XYZ on Linux" I can just link them to a page answering that question, and showing them how to do it themselves.
[[id:1d917282-ecf4-4d4c-ba49-628cbb4bb8cc][The Arcology Project]] is the publishing platform and social layer of my [[id:60f710b2-6a1f-44be-bc13-dfe01e46d4e3][Concept Operating System]]'s [[id:knowledge_base][Knowledge Management]] system. It is a web publishing platform built to present my literate programming platform and my public knowledge. The goal, in short, is to be able to publish and link to any node in a set of [[id:1fb8fb45-fac5-4449-a347-d55118bb377e][org-mode]] documents. When someone asks me "hey how do I do XYZ on Linux" I can just link them to a page answering that question, and showing them how to do it themselves.
* The Arcology Project: Django Edition

View File

@ -8,9 +8,9 @@
,#+AUTO_TANGLE: vars:org-babel-default-header-args
#+ARROYO_NIXOS_MODULE: nixos/arcology2.nix
#+ARROYO_NIXOS_ROLE: server
#+ARROYO_SYSTEM_ROLE: server
user-configuration ; These are mostly generated from org-mode tables if you're meant to be editing or extending them. This is a cool feature of org-babel, where you can use tables as data for code which can output more code or even org headings or links. We use this to generate configuration.
This file contains user-configuration. Some sections are generated from org-mode tables if you're meant to be editing or extending them. This is a cool feature of org-babel, where you can use tables as data for code which can output more code or even org headings or links. We use this to generate configuration.
* The Arcology's Site List
:PROPERTIES:
@ -152,7 +152,6 @@ let
arcology = pkgs.callPackage /home/rrix/org/arcology-django/default.nix { inherit arroyo_rs; };
in {
imports = [ ./arcology2-module.nix ];
services.arcology.enable = pkgs.lib.mkForce false;
services.arcology-ng = {
enable = true;
packages.arcology = arcology;

View File

@ -118,7 +118,7 @@ let
};
};
userConfig = (mkIf (!config.services.arcology.enable) {
userConfig = {
ids.uids.arcology = 900;
ids.gids.arcology = 900;
@ -134,7 +134,7 @@ let
users.groups.arcology = {
gid = config.ids.gids.arcology;
};
});
};
in {
options = {
services.arcology-ng = {