[Emacs] Improve default org-window-habit faces

This commit is contained in:
2023-08-29 14:21:33 -06:00
parent 84db8ba802
commit f4485e2070
4 changed files with 46 additions and 26 deletions

6
nixos/flake.lock generated
View File

@@ -863,11 +863,11 @@
},
"unstable": {
"locked": {
"lastModified": 1693099187,
"narHash": "sha256-FXCc6OIghv9k4xYOhSMZI6bj7o56S8BJKzKtTKzdUVQ=",
"lastModified": 1693158576,
"narHash": "sha256-aRTTXkYvhXosGx535iAFUaoFboUrZSYb1Ooih/auGp0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "cf2004afe4d4b95a295c63c911e949e40915eedb",
"rev": "a999c1cc0c9eb2095729d5aa03e0d8f7ed256780",
"type": "github"
},
"original": {

View File

@@ -1,4 +1,7 @@
{ forEachUser, ... }: {
{ forEachUser, ... }:
let biskcomp-nginx-hostnames = "192.168.1.44 railbird.ai 1896Folsom.duckdns.org biskcomp.local 0.0.0.0 67.162.131.71";
in
{
imports = [
../configuration.nix
../raspberry-pi.nix
@@ -17,7 +20,7 @@
modules.nixified-ai.enable = false;
modules.cache-server = {
enable = true;
host-string = "192.168.1.44 railbird.ai 1896Folsom.duckdns.org 0.0.0.0 67.162.131.71";
host-string = biskcomp-nginx-hostnames;
port = 80;
path = "/nix-cache";
};
@@ -25,7 +28,7 @@
services.vaultwarden = {
enable = true;
config = {
ROCKET_ADDRESS = "::";
ROCKET_ADDRESS = "::1";
ROCKET_PORT = 8222;
};
};
@@ -35,14 +38,28 @@
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedTlsSettings = true;
virtualHosts = let conf = {
root = ../railbird.ai;
locations."/" = {
index = "index.html";
virtualHosts = {
"192.168.1.44 railbird.ai 1896Folsom.duckdns.org 0.0.0.0 67.162.131.71" = {
root = ../railbird.ai;
locations."/" = {
index = "index.html";
};
};
# Server block for Vaultwarden on a different port
"_:8222" = {
listen = [ { addr = "::"; port = 8222; } ]; # Listen on IPv6 and port 8222
forceSSL = false; # Assuming you're not using HTTPS for this one
locations."/" = {
proxyPass = "http://::1:8222";
proxySetHeaders = {
Host = "$host";
X-Real-IP = "$remote_addr";
X-Forwarded-For = "$proxy_add_x_forwarded_for";
X-Forwarded-Proto = "$scheme";
};
proxyRedirect = "off";
};
};
};
in {
"192.168.1.44 railbird.ai 1896Folsom.duckdns.org 0.0.0.0 67.162.131.71" = conf;
};
};