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 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 ~/arroyo-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 ~/arroyo-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 cce/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"
- Local parsing of KOReader Notes to Org Roam
- Storing passwords securely with vaultwarden
- Arcology Garden Site Updates
- Rust
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- Wallabag
- 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 - NixOS on Framework laptop
- First Impression of the Purism Librem5
- Interfacing with the Arcology
- Linux Bike Computer App
- The Wobserver
- The Wobserver
- My Grymoires
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- I'm now running my Matrix Synapse instance on my Wobserver
- CCE Nixos Core
- Keeping Nix Version Pins in One Place
- CCE and Emacs Update Feed
- Keeping Nix Version Pins in One Place
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- Keeping Nix Version Pins in One Place
- My NixOS Desktop configuration
- I'm now running my Matrix Synapse instance on my Wobserver
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Complete Computing
- The Complete Computing Environment
- Arroyo Nix Support
- CCE and Emacs Update Feed
- NixGL
- Listening to Music with MPD
- Interfacing with the Arcology
- Matrix Synapse
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- direnv
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Local parsing of KOReader Notes to Org Roam
- Storing passwords securely with vaultwarden
- CCE and Emacs Update Feed
- Arcology Site Engine Updates
- Rust
- Local parsing of KOReader Notes to Org Roam
- Nearly Stateless Computing Using Syncthing
- My Cool Things Collection
- My Cool Things Collection
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Arroyo Systems Management
- CCE and Emacs Update Feed
- From Wireguard to Tailscale
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Nix Grymoire
- Arroyo Systems Management
- CCE and Emacs Update Feed
- NixOS on Framework laptop
- First Impression of the Purism Librem5
- Arcology Site Engine Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Linux Bike Computer App
- CCE and Emacs Update Feed
- nix-community/emacs-overlay
- The Complete Computing Environment
- nix-community/emacs-overlay
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE 2.0 Module Layout
- Arcology Site Engine Updates
- CCE and Emacs Update Feed
- CCE Nixos Core
- CCE and Emacs Update Feed
- Archive
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- A Custom NIX_PATH and local nixpkgs checkout
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- The Complete Computing Environment
- Arroyo Nix Support
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Arroyo Emacs Generator
- nix-community/emacs-overlay
- Arroyo Emacs Generator
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- CCE 2.0 Module Layout
- CCE and Emacs Update Feed
- Wallabag
- direnv
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- 2022 Games of the Year
- My Cool Things Collection
- My Cool Things Collection
- Ruby and Rails in Emacs
- Arroyo Systems Management
- From Wireguard to Tailscale
- Ruby and Rails in Emacs
- tgbugs/orgstrap: Executable Org files
- Arroyo Systems Management
- tgbugs/orgstrap: Executable Org files
- Deadgrep is a Great Grep Interface
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- rrix "Uses This"
- tgbugs/orgstrap: Executable Org files
- Complete Computing
- tgbugs/orgstrap: Executable Org files
- Python in Emacs through LSP
- Archive
- NixGL
- CCE 2.0 Module Layout
- A Custom NIX_PATH and local nixpkgs checkout
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Matrix Synapse
- Matrix Synapse
- Storing passwords securely with vaultwarden
- Local parsing of KOReader Notes to Org Roam
- Arroyo Emacs Generator
- Local parsing of KOReader Notes to Org Roam
- Arroyo Emacs Generator
- I'm now running my Matrix Synapse instance on my Wobserver
- Wallabag
- 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
- Ruby and Rails in Emacs
- Interfacing with the Arcology
- Ruby and Rails in Emacs
- 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
- CCE Nixos Core
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- rrix "Uses This"
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- My NixOS Desktop configuration
- 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 - Complete Computing
- The Complete Computing Environment
- Arroyo Nix Support
- My Grymoires
- Arcology Garden Site Updates
- Python in Emacs through LSP
- NixGL
- Listening to Music with MPD
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Matrix Synapse
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- My Grymoires
- What is "Convivial Software"?
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- direnv
- CCE and Emacs Update Feed
- Storing passwords securely with vaultwarden
- Local parsing of KOReader Notes to Org Roam
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Site Engine Updates
- Rust
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- From Wireguard to Tailscale
- I'm now running my Matrix Synapse instance on my Wobserver
- Arcology Garden Site Updates
- Listening to Music with MPD
- Nix Grymoire
- Rust
- What is "Convivial Software"?
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- What is "Convivial Software"?
- NixOS on Framework laptop
- First Impression of the Purism Librem5
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Linux Bike Computer App
- CCE and Emacs Update Feed
- The Complete Computing Environment
- nix-community/emacs-overlay
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE 2.0 Module Layout
- Rust
- CCE and Emacs Update Feed
- CCE Nixos Core
- First Impression of the Purism Librem5
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- Linux Bike Computer App
- My NixOS Desktop configuration
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Arroyo Nix Support
- The Complete Computing Environment
- The Complete Computing Environment
- CCE and Emacs Update Feed
- First Impression of the Purism Librem5
- NixOS on Framework laptop
- Linux Bike Computer App
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- Generate a Dynamic Home Manager Configuration
- CCE and Emacs Update Feed
- Generate a Dynamic Home Manager Configuration
- direnv
- Generate a Dynamic Home Manager Configuration
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- 2022 Games of the Year
- My Cool Things Collection
- My Cool Things Collection
- Ruby and Rails in Emacs
- Arroyo Systems Management
- From Wireguard to Tailscale
- Ruby and Rails in Emacs
- Arroyo Systems Management
- My Cool Things Collection
- My Cool Things Collection
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- nix-community/emacs-overlay
- rrix "Uses This"
- The Complete Computing Environment
- nix-community/emacs-overlay
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- My Cool Things Collection
- My Cool Things Collection
- Python in Emacs through LSP
- Archive
- CCE 2.0 Module Layout
- Arroyo Systems Management
- A Custom NIX_PATH and local nixpkgs checkout
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Arroyo Systems Management
- The Complete Computing Environment
- Archive
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- I'm now running my Matrix Synapse instance on my Wobserver
- Wallabag
- 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
- 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 - A Custom NIX_PATH and local nixpkgs checkout
- 2022 Games of the Year
- Wallabag
- Ruby and Rails in Emacs
- Interfacing with the Arcology
- Ruby and Rails in Emacs
- My Grymoires
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- Wallabag
- rrix "Uses This"
- My NixOS Desktop configuration
- My NixOS Desktop configuration
- 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 - Complete Computing
- The Complete Computing Environment
- Python in Emacs through LSP
- NixGL
- Listening to Music with MPD
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Matrix Synapse
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- My Grymoires
- What is "Convivial Software"?
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Deadgrep is a Great Grep Interface
- CCE and Emacs Update Feed
- Storing passwords securely with vaultwarden
- Local parsing of KOReader Notes to Org Roam
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Site Engine Updates
- Rust
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- Complete Computing
- I'm now running my Matrix Synapse instance on my Wobserver
- NixGL
- Local parsing of KOReader Notes to Org Roam
- Nix Grymoire
- Local parsing of KOReader Notes to Org Roam
- Matrix Synapse
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- What is "Convivial Software"?
- NixOS on Framework laptop
- First Impression of the Purism Librem5
- Interfacing with the Arcology
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- Linux Bike Computer App
- The Complete Computing Environment
- nix-community/emacs-overlay
- Local parsing of KOReader Notes to Org Roam
- Storing passwords securely with vaultwarden
- Arcology Garden Site Updates
- Nix Grymoire
- CCE 2.0 Module Layout
- Rust
- Local parsing of KOReader Notes to Org Roam
- CCE and Emacs Update Feed
- CCE Nixos Core
- CCE and Emacs Update Feed
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- My NixOS Desktop configuration
- Nix Grymoire
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- The Complete Computing Environment
- Arroyo Nix Support
- The Complete Computing Environment
- First Impression of the Purism Librem5
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Linux Bike Computer App
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- CCE Nixos Core
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- direnv
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- tgbugs/orgstrap: Executable Org files
- Arcology Site Engine Updates
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- 2022 Games of the Year
- Arroyo Nix Support
- My Cool Things Collection
- My Cool Things Collection
- Arroyo Systems Management
- From Wireguard to Tailscale
- Arroyo Systems Management
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- CCE and Emacs Update Feed
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- The Complete Computing Environment
- From Wireguard to Tailscale
- direnv
- nix-community/emacs-overlay
- CCE 2.0 Module Layout
- CCE and Emacs Update Feed
- My Cool Things Collection
- My Cool Things Collection
- Archive
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- CCE 2.0 Module Layout
- From Wireguard to Tailscale
- A Custom NIX_PATH and local nixpkgs checkout
- The Complete Computing Environment
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Arroyo Emacs Generator
- Arroyo Emacs Generator
- Wallabag
- Archive
- tgbugs/orgstrap: Executable Org files
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - tgbugs/orgstrap: Executable Org files
- Single-user install should not use /run/user/
for build directories. · Issue #2957 · NixOS/nix - 2022 Games of the Year
- Ruby and Rails in Emacs
- Interfacing with the Arcology
- Ruby and Rails in Emacs
- Arroyo Emacs Generator
- My Grymoires
- Arroyo Emacs Generator
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- Wallabag
- rrix "Uses This"
- Complete Computing
- Python in Emacs through LSP
- NixGL
- Ruby and Rails in Emacs
- rrix "Uses This"
- Listening to Music with MPD
- CCE 2.0 Module Layout
- Ruby and Rails in Emacs
- Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- Matrix Synapse
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- rrix "Uses This"
- Storing passwords securely with vaultwarden
- Local parsing of KOReader Notes to Org Roam
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- Rust
- Arcology Site Engine Updates
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- Python in Emacs through LSP
- 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 - Paperless-ngx is an open source document management system
- Paperless-ngx is an open source document management system
- I'm now running my Matrix Synapse instance on my Wobserver
- CCE and Emacs Update Feed
- NixOS on Framework laptop
- First Impression of the Purism Librem5
- Interfacing with the Arcology
- Arcology Site Engine Updates
- Linux Bike Computer App
- I'm now running my Matrix Synapse instance on my Wobserver
- Local parsing of KOReader Notes to Org Roam
- CCE 2.0 Module Layout
- My Grymoires
- Local parsing of KOReader Notes to Org Roam
- I'm now running my Matrix Synapse instance on my Wobserver
- CCE and Emacs Update Feed
- CCE Nixos Core
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- My NixOS Desktop configuration
- I'm now running my Matrix Synapse instance on my Wobserver
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- Nix Grymoire
- The Complete Computing Environment
- Arroyo Nix Support
- Listening to Music with MPD
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- CCE and Emacs Update Feed
- direnv
- CCE and Emacs Update Feed
- Arcology Garden Site Updates
- CCE and Emacs Update Feed
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- My NixOS Desktop configuration
- Arcology Site Engine Updates
- Rust
- My NixOS Desktop configuration
- tgbugs/orgstrap: Executable Org files
- tgbugs/orgstrap: Executable Org files
- Nearly Stateless Computing Using Syncthing
- Yeah, I Run Emacs on my Steam Deck, Ever Heard of It?
- The Complete Computing Environment
- My Cool Things Collection
- My Cool Things Collection
- Arroyo Systems Management
- From Wireguard to Tailscale
- Arroyo Systems Management
- Rebuild of The Complete Computer 0x01: You Can (Not) Compute
- CCE and Emacs Update Feed
- First Impression of the Purism Librem5
- NixOS on Framework laptop
- Arcology Site Engine Updates
- nix-community/emacs-overlay
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- Linux Bike Computer App
- The Complete Computing Environment
- nix-community/emacs-overlay
- CCE 2.0 Module Layout
- CCE and Emacs Update Feed
- Archive
- nix-community/emacs-overlay
- CCE 2.0 Module Layout
- From Wireguard to Tailscale
- nix-community/emacs-overlay
- A Custom NIX_PATH and local nixpkgs checkout
- The Complete Computing Environment
- nix-community/emacs-overlay
- nixcfg/wrapWine.nix at e542e743774f499f996a4f886a8d4a4133fce258 · lucasew/nixcfg
- The Complete Computing Environment
- Arroyo Emacs Generator
- nix-community/emacs-overlay
- Arroyo Emacs Generator
- Wallabag
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- tgbugs/orgstrap: Executable Org files
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- 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
- Nearly Stateless Computing Using Syncthing
- 2022 Games of the Year
- The Complete Computing Environment
- My Cool Things Collection
- My Cool Things Collection
- Ruby and Rails in Emacs
- Arroyo Systems Management
- Ruby and Rails in Emacs
- Arroyo Systems Management
- My Grymoires
- Arcology Garden Site Updates
- Deadgrep is a Great Grep Interface
- rrix "Uses This"
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- `python39Packages.apsw` fails to build · Issue #167626 · NixOS/nixpkgs
- Complete Computing
- 2022 Games of the Year
- Python in Emacs through LSP
- NixGL
- Listening to Music with MPD
- CCE 2.0 Module Layout
- Paperless-ngx is an open source document management system
- A Custom NIX_PATH and local nixpkgs checkout
- Paperless-ngx is an open source document management system
- Matrix Synapse
- Matrix Synapse
- What is "Convivial Software"?
- Arcology Garden Site Updates
- Arcology Garden Site Updates
- What is "Convivial Software"?
Page Metadata Keywords
#+ARCOLOGY_ALLOW_CRAWL: t
#+ARCOLOGY_KEY: cce/nixos
#+ARROYO_EMACS_MODULE: nixos
#+ARROYO_MODULE_WANTS: cce/company_code_completion.org
#+ARROYO_NIXOS_MODULE: nixos/nixpkgs.nix