Nix is a Tool for building Linux systems in a declarative idempotent method and is a good fit for the CCE , I think when moving past Fedora Linux .
Using Nix in My Emacs
emacs-lisp source: :tangle ~/nix/lisp/nixos.el(provide 'cce/nixos) (use-package nix-mode) (use-package nixpkgs-fmt) (use-package nix-buffer) (use-package nix-update) (use-package company-nixos-options :hook (nix-mode . (lambda () (make-local-variable 'company-backends) (add-to-list 'company-backends 'company-nixos-options)))) (use-package nix-sandbox) (defun cce-find-nix-output-at-point () (interactive) (->> (nix-store-path-at-point) (make-instance 'nix-store-path :path ) (nix-store-fill-data ) (nix-store-path-outputs ) (completing-read "Select an output" ) (find-file)))
nix and nixpkgs configuration for My NixOS configuration
nix source: :tangle ~/nix/nixos/nixpkgs.nix{ pkgs, config, ... }: { # less nix crap nix.gc = { automatic = true; dates = "03:30"; options = "--delete-older-than 30d"; persistent = true; }; nix.distributedBuilds = true; nix.buildMachines = builtins.filter (e: e.hostName != config.networking.hostName) [ # { hostName = "virtuous-cassette"; # maxJobs = 6; # sshUser = "builder"; # systems = [ # "x86_64-linux" # "aarch64-linux" # ]; # } # { hostName = "window-smoke"; # maxJobs = 6; # sshUser = "builder"; # systems = [ # "x86_64-linux" # "i686-linux" # "aarch64-linux" # ]; # } { hostName = "last-bank"; maxJobs = 32; sshUser = "builder"; systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; } ] ; nix.settings.trusted-users = ["rrix" "root" "@wheel"]; nix.settings.extra-experimental-features = [ "flakes" "nix-command" ]; # hahaha! yes # nixpkgs.config = { allowUnfree = true; }; environment.systemPackages = with pkgs; [ nix-tree nix-du nurl ]; imports = [ ./ccache.nix ]; }
nix source: :tangle ~/nix/nixos/ccache.nix{ config, pkgs, ... }: { programs.ccache.enable = true; nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ]; systemd.tmpfiles.rules = [ "d ${config.programs.ccache.cacheDir} 1770 root nixbld -" ]; nixpkgs.overlays = [ (self: super: { ccacheWrapper = super.ccacheWrapper.override { extraConfig = '' export CCACHE_COMPRESS=1 export CCACHE_DIR="${config.programs.ccache.cacheDir}" export CCACHE_UMASK=007 if [ ! -d "$CCACHE_DIR" ]; then echo "=====" echo "Directory '$CCACHE_DIR' does not exist" echo "Please create it with:" echo " sudo mkdir -m0770 '$CCACHE_DIR'" echo " sudo chown root:nixbld '$CCACHE_DIR'" echo "=====" exit 1 fi if [ ! -w "$CCACHE_DIR" ]; then echo "=====" echo "Directory '$CCACHE_DIR' is not accessible for user $(whoami)" echo "Please verify its access permissions" echo "=====" exit 1 fi ''; }; }) ]; }
DONE remove the nixpkgs.config.permittedInsecurePackages from nix.conf..
Installing Nix on non-NixOS machines
yaml source:- name: /nix exists file: path: /nix state: directory owner: "{{local_account}}" group: "{{local_account}}" tags: - nixos - name: nix installed shell: executable: /bin/bash cmd: "bash <(curl -L https://nixos.org/nix/install) --no-daemon" creates: /nix/store/ become: yes become_user: "{{local_account}}" tags: - nixos
The Ansible Manages my Laptop until I deploy NixOS and adapt CCE for it.
shell source: :tangle ~/nix/files/bash_profile.d/90-nix.shif [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then . ~/.nix-profile/etc/profile.d/nix.sh; fi
Interesting Headings
Pages Linking Here
- rrix "Uses This"
- Arcology Garden Site Updates
- Nix Grymoire
- From Wireguard to Tailscale
- tgbugs/orgstrap: Executable Org files
- I'm now running my Matrix Synapse instance on my Wobserver
- Arcology Garden Site Updates
- tgbugs/orgstrap: Executable Org files
- I'm now running my Matrix Synapse instance on my Wobserver
- Nix Grymoire
- NixGL
- I'm now running my Matrix Synapse instance on my Wobserver
- My Grymoires
- I'm now running my Matrix Synapse instance on my Wobserver
- Nix Grymoire
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Arcology Site Engine Updates
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Complete Computing
- tgbugs/orgstrap: Executable Org files
- Nix Grymoire
- First Impression of the Purism Librem5
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- Linux Bike Computer App
- tgbugs/orgstrap: Executable Org files
- direnv
- My Grymoires
- I'm now running my Matrix Synapse instance on my Wobserver
- I'm now running my Matrix Synapse instance on my Wobserver
- Archive
- Arcology Garden Site Updates
- Complete Computing
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Generate a Dynamic Home Manager Configuration
- I'm now running my Matrix Synapse instance on my Wobserver
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- I'm now running my Matrix Synapse instance on my Wobserver
- Generate a Dynamic Home Manager Configuration
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- CCE 2.0 Module Layout
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Linux Bike Computer App
- Arcology Garden Site Updates
- What is "Convivial Software"?
- I'm now running my Matrix Synapse instance on my Wobserver
- The Wobserver
- The Wobserver
- My Cool Things Collection
- My Cool Things Collection
- My NixOS Desktop/Laptop configuration
- Arcology Garden Site Updates
- My NixOS Desktop/Laptop configuration
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- Arcology Site Engine Updates
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- 2022 Games of the Year
- My Cool Things Collection
- My Cool Things Collection
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Storing passwords securely with vaultwarden
- Linux Bike Computer App
- Nix Grymoire
- First Impression of the Purism Librem5
- NixOS on Framework laptop
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Wallabag
- First Impression of the Purism Librem5
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Linux Bike Computer App
- nix-community/emacs-overlay
- Arcology Garden Site Updates
- CCE 2.0 Module Layout
- Arcology Site Engine Updates
- NixOS on Framework laptop
- My Cool Things Collection
- My Cool Things Collection
- Matrix Synapse
- Linux Bike Computer App
- rrix "Uses This"
- Matrix Synapse
- Listening to Music with MPD
- nix-community/emacs-overlay
- Linux Bike Computer App
- Matrix Synapse
- Archive
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- nix-community/emacs-overlay
- Matrix Synapse
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- 2022 Games of the Year
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Nix Grymoire
- tgbugs/orgstrap: Executable Org files
- My Grymoires
- Storing passwords securely with vaultwarden
- tgbugs/orgstrap: Executable Org files
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Local parsing of KOReader Notes to Org Roam
- nix-community/emacs-overlay
- Local parsing of KOReader Notes to Org Roam
- CCE 2.0 Module Layout
- nix-community/emacs-overlay
- My Cool Things Collection
- My Cool Things Collection
- nix-community/emacs-overlay
- CCE and Emacs Update Feed
- nix-community/emacs-overlay
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- 2022 Games of the Year
- 2022 Games of the Year
- What is "Convivial Software"?
- Wallabag
- My Cool Things Collection
- My Cool Things Collection
- What is "Convivial Software"?
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Nix Version Pins are now Flake Inputs
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- CCE and Emacs Update Feed
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Arcology Site Engine Updates
- My Cool Things Collection
- My Cool Things Collection
- My Grymoires
- Arcology Garden Site Updates
- CCE Nixos Core
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- NixOS on Framework laptop
- The Complete Computing Environment
- rrix "Uses This"
- rrix "Uses This"
- CCE and Emacs Update Feed
- Archive
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Listening to Music with MPD
- tgbugs/orgstrap: Executable Org files
- 2022 Games of the Year
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- tgbugs/orgstrap: Executable Org files
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Archive
- CCE 2.0 Module Layout
- Arcology Site Engine Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- My Grymoires
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- Linux Bike Computer App
- CCE and Emacs Update Feed
- I'm now running my Matrix Synapse instance on my Wobserver
- Nix Grymoire
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - CCE 2.0 Module Layout
- CCE and Emacs Update Feed
- Nix Grymoire
- The Complete Computing Environment
- My Grymoires
- First Impression of the Purism Librem5
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - I'm now running my Matrix Synapse instance on my Wobserver
- tgbugs/orgstrap: Executable Org files
- My Grymoires
- tgbugs/orgstrap: Executable Org files
- Archive
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- The Complete Computing Environment
- rrix "Uses This"
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- I'm now running my Matrix Synapse instance on my Wobserver
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arroyo Emacs Generator
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arroyo Emacs Generator
- My Grymoires
- Arcology Garden Site Updates
- nix-community/emacs-overlay
- Nix Grymoire
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Python in Emacs through LSP
- nix-community/emacs-overlay
- Arcology Garden Site Updates
- Rust
- What is "Convivial Software"?
- Arcology Garden Site Updates
- My Grymoires
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- tgbugs/orgstrap: Executable Org files
- Arcology Site Engine Updates
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- I'm now running my Matrix Synapse instance on my Wobserver
- CCE 2.0 Module Layout
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Arroyo Systems Management
- Arroyo Systems Management
- Arcology Garden Site Updates
- Nix Grymoire
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Nix Grymoire
- First Impression of the Purism Librem5
- What is "Convivial Software"?
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- First Impression of the Purism Librem5
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Linux Bike Computer App
- tgbugs/orgstrap: Executable Org files
- nix-community/emacs-overlay
- Arcology Garden Site Updates
- tgbugs/orgstrap: Executable Org files
- CCE 2.0 Module Layout
- Generate a Dynamic Home Manager Configuration
- From Wireguard to Tailscale
- Generate a Dynamic Home Manager Configuration
- First Impression of the Purism Librem5
- Nix Grymoire
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Linux Bike Computer App
- Linux Bike Computer App
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- NixGL
- Arcology Site Engine Updates
- Complete Computing
- The Wobserver
- The Wobserver
- First Impression of the Purism Librem5
- rrix "Uses This"
- tgbugs/orgstrap: Executable Org files
- Linux Bike Computer App
- My NixOS Desktop/Laptop configuration
- My NixOS Desktop/Laptop configuration
- tgbugs/orgstrap: Executable Org files
- Arroyo Systems Management
- My Cool Things Collection
- My Cool Things Collection
- direnv
- Arroyo Systems Management
- tgbugs/orgstrap: Executable Org files
- 2022 Games of the Year
- tgbugs/orgstrap: Executable Org files
- direnv
- What is "Convivial Software"?
- 2022 Games of the Year
- nix-community/emacs-overlay
- What is "Convivial Software"?
- My Cool Things Collection
- My Cool Things Collection
- rrix "Uses This"
- nix-community/emacs-overlay
- Linux Bike Computer App
- From Wireguard to Tailscale
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - CCE 2.0 Module Layout
- Arcology Site Engine Updates
- CCE Nixos Core
- NixOS on Framework laptop
- I'm now running my Matrix Synapse instance on my Wobserver
- My Cool Things Collection
- My Cool Things Collection
- rrix "Uses This"
- rrix "Uses This"
- nix-community/emacs-overlay
- Listening to Music with MPD
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- rrix "Uses This"
- I'm now running my Matrix Synapse instance on my Wobserver
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- My Cool Things Collection
- My Cool Things Collection
- Nearly Stateless Computing Using Syncthing
- Archive
- Linux Bike Computer App
- CCE 2.0 Module Layout
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- My Grymoires
- nix-community/emacs-overlay
- Local parsing of KOReader Notes to Org Roam
- Local parsing of KOReader Notes to Org Roam
- Archive
- Archive
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- CCE and Emacs Update Feed
- I'm now running my Matrix Synapse instance on my Wobserver
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Matrix Synapse
- Linux Bike Computer App
- Matrix Synapse
- I'm now running my Matrix Synapse instance on my Wobserver
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Paperless-ngx is an open source document management system
- nix-community/emacs-overlay
- Paperless-ngx is an open source document management system
- Nix Version Pins are now Flake Inputs
- nix-community/emacs-overlay
- 2022 Games of the Year
- Generate a Dynamic Home Manager Configuration
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- Archive
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Generate a Dynamic Home Manager Configuration
- CCE Nixos Core
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arcology Garden Site Updates
- Storing passwords securely with vaultwarden
- I'm now running my Matrix Synapse instance on my Wobserver
- The Complete Computing Environment
- CCE and Emacs Update Feed
- My Grymoires
- Archive
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- A Custom NIX_PATH and local nixpkgs checkout
- Arcology Garden Site Updates
- The Wobserver
- The Wobserver
- I'm now running my Matrix Synapse instance on my Wobserver
- rrix "Uses This"
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- My NixOS Desktop/Laptop configuration
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- My NixOS Desktop/Laptop configuration
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- nix-community/emacs-overlay
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Archive
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- nix-community/emacs-overlay
- First Impression of the Purism Librem5
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arcology Garden Site Updates
- Arroyo Nix Support
- Arcology Garden Site Updates
- Wallabag
- CCE and Emacs Update Feed
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- My Grymoires
- What is "Convivial Software"?
- My Cool Things Collection
- My Cool Things Collection
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Arcology Site Engine Updates
- rrix "Uses This"
- I'm now running my Matrix Synapse instance on my Wobserver
- First Impression of the Purism Librem5
- Local parsing of KOReader Notes to Org Roam
- 2022 Games of the Year
- Local parsing of KOReader Notes to Org Roam
- The Complete Computing Environment
- Nix Grymoire
- I'm now running my Matrix Synapse instance on my Wobserver
- First Impression of the Purism Librem5
- Nix Grymoire
- Interfacing with the Arcology
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- First Impression of the Purism Librem5
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- Linux Bike Computer App
- First Impression of the Purism Librem5
- tgbugs/orgstrap: Executable Org files
- nix-community/emacs-overlay
- CCE 2.0 Module Layout
- Deadgrep is a Great Grep Interface
- Arcology Garden Site Updates
- Nix Grymoire
- CCE 2.0 Module Layout
- The Complete Computing Environment
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- What is "Convivial Software"?
- What is "Convivial Software"?
- Nix Grymoire
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Python in Emacs through LSP
- Arcology Site Engine Updates
- Rust
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - My Grymoires
- First Impression of the Purism Librem5
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Linux Bike Computer App
- My Cool Things Collection
- My Cool Things Collection
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Nearly Stateless Computing Using Syncthing
- What is "Convivial Software"?
- What is "Convivial Software"?
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arroyo Systems Management
- 2022 Games of the Year
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- tgbugs/orgstrap: Executable Org files
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- tgbugs/orgstrap: Executable Org files
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Archive
- Arroyo Systems Management
- What is "Convivial Software"?
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - 2022 Games of the Year
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- What is "Convivial Software"?
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- My Cool Things Collection
- My Cool Things Collection
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Arcology Site Engine Updates
- What is "Convivial Software"?
- What is "Convivial Software"?
- Arcology Garden Site Updates
- From Wireguard to Tailscale
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- nix-community/emacs-overlay
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - CCE 2.0 Module Layout
- NixOS on Framework laptop
- rrix "Uses This"
- NixGL
- Listening to Music with MPD
- CCE 2.0 Module Layout
- Linux Bike Computer App
- My Cool Things Collection
- My Cool Things Collection
- Archive
- CCE 2.0 Module Layout
- Arcology Site Engine Updates
- CCE 2.0 Module Layout
- Complete Computing
- Arcology Garden Site Updates
- My Grymoires
- Arcology Garden Site Updates
- Arcology Site Engine Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- First Impression of the Purism Librem5
- direnv
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- Generate a Dynamic Home Manager Configuration
- Generate a Dynamic Home Manager Configuration
- Archive
- tgbugs/orgstrap: Executable Org files
- nix-community/emacs-overlay
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - tgbugs/orgstrap: Executable Org files
- rrix "Uses This"
- Nix Grymoire
- nix-community/emacs-overlay
- 2022 Games of the Year
- I'm now running my Matrix Synapse instance on my Wobserver
- Nix Version Pins are now Flake Inputs
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- The Wobserver
- The Wobserver
- I'm now running my Matrix Synapse instance on my Wobserver
- My Grymoires
- CCE Nixos Core
- My NixOS Desktop/Laptop configuration
- tgbugs/orgstrap: Executable Org files
- My NixOS Desktop/Laptop configuration
- tgbugs/orgstrap: Executable Org files
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- The Complete Computing Environment
- rrix "Uses This"
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Archive
- NixOS on Framework laptop
- I'm now running my Matrix Synapse instance on my Wobserver
- rrix "Uses This"
- Listening to Music with MPD
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- I'm now running my Matrix Synapse instance on my Wobserver
- rrix "Uses This"
- CCE 2.0 Module Layout
- What is "Convivial Software"?
- What is "Convivial Software"?
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Arcology Site Engine Updates
- CCE 2.0 Module Layout
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - NixOS on Framework laptop
- rrix "Uses This"
- Arcology Garden Site Updates
- Arcology Site Engine Updates
- Matrix Synapse
- rrix "Uses This"
- Matrix Synapse
- I'm now running my Matrix Synapse instance on my Wobserver
- Deadgrep is a Great Grep Interface
- Listening to Music with MPD
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Archive
- Nix Grymoire
- I'm now running my Matrix Synapse instance on my Wobserver
- Python in Emacs through LSP
- Nix Grymoire
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arcology Site Engine Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- Rust
- The Complete Computing Environment
- Storing passwords securely with vaultwarden
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- First Impression of the Purism Librem5
- First Impression of the Purism Librem5
- Local parsing of KOReader Notes to Org Roam
- tgbugs/orgstrap: Executable Org files
- Arcology Site Engine Updates
- My Cool Things Collection
- My Cool Things Collection
- Linux Bike Computer App
- tgbugs/orgstrap: Executable Org files
- 2022 Games of the Year
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- The Complete Computing Environment
- CCE 2.0 Module Layout
- My Grymoires
- I'm now running my Matrix Synapse instance on my Wobserver
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Archive
- The Complete Computing Environment
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- I'm now running my Matrix Synapse instance on my Wobserver
- Linux Bike Computer App
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Nix Grymoire
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Wallabag
- My Cool Things Collection
- My Cool Things Collection
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Nix Version Pins are now Flake Inputs
- 2022 Games of the Year
- My Cool Things Collection
- My Cool Things Collection
- CCE Nixos Core
- First Impression of the Purism Librem5
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- The Complete Computing Environment
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Archive
- CCE and Emacs Update Feed
- 2022 Games of the Year
- My Grymoires
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- I'm now running my Matrix Synapse instance on my Wobserver
- Arcology Garden Site Updates
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arcology Site Engine Updates
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- My Cool Things Collection
- My Cool Things Collection
- Nearly Stateless Computing Using Syncthing
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- 2022 Games of the Year
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arroyo Systems Management
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- nix-community/emacs-overlay
- I'm now running my Matrix Synapse instance on my Wobserver
- My Cool Things Collection
- My Cool Things Collection
- nix-community/emacs-overlay
- The Complete Computing Environment
- Arroyo Systems Management
- What is "Convivial Software"?
- What is "Convivial Software"?
- CCE and Emacs Update Feed
- First Impression of the Purism Librem5
- My Grymoires
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - First Impression of the Purism Librem5
- Arcology Site Engine Updates
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Linux Bike Computer App
- nix-community/emacs-overlay
- The Complete Computing Environment
- CCE 2.0 Module Layout
- CCE and Emacs Update Feed
- From Wireguard to Tailscale
- Linux Bike Computer App
- Archive
- nix-community/emacs-overlay
- CCE 2.0 Module Layout
- The Complete Computing Environment
- My Grymoires
- nix-community/emacs-overlay
- My Grymoires
- Nix Version Pins are now Flake Inputs
- NixGL
- First Impression of the Purism Librem5
- NixGL
- Arcology Site Engine Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Complete Computing
- What is "Convivial Software"?
- nix-community/emacs-overlay
- nix-community/emacs-overlay
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Deadgrep is a Great Grep Interface
- Arcology Site Engine Updates
- The Complete Computing Environment
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - tgbugs/orgstrap: Executable Org files
- nix-community/emacs-overlay
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- 2022 Games of the Year
- My Cool Things Collection
- My Cool Things Collection
- What is "Convivial Software"?
- Python in Emacs through LSP
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- Listening to Music with MPD
- Rust
- Arcology Site Engine Updates
- My Grymoires
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Arcology Site Engine Updates
- Arcology Garden Site Updates
- I'm now running my Matrix Synapse instance on my Wobserver
- rrix "Uses This"
- NixOS on Framework laptop
- Nearly Stateless Computing Using Syncthing
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- My Cool Things Collection
- Arcology Garden Site Updates
- My Cool Things Collection
- rrix "Uses This"
- 2022 Games of the Year
- CCE 2.0 Module Layout
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arroyo Systems Management
- Listening to Music with MPD
- I'm now running my Matrix Synapse instance on my Wobserver
- Nix Grymoire
- Arroyo Systems Management
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Arcology Garden Site Updates
- tgbugs/orgstrap: Executable Org files
- 2022 Games of the Year
- Arcology Garden Site Updates
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- Arcology Garden Site Updates
- What is "Convivial Software"?
- What is "Convivial Software"?
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- CCE 2.0 Module Layout
- Arcology Garden Site Updates
- Arcology Site Engine Updates
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- Arcology Site Engine Updates
- Arcology Garden Site Updates
- Arcology Garden Site Updates
Page Metadata Keywords
#+ARCOLOGY_ALLOW_CRAWL: t
#+ARCOLOGY_KEY: cce/nixos