summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.env2
-rw-r--r--agenda.org2
-rw-r--r--config/nix.org3
-rw-r--r--nix/modules/home/zsh.nix1
-rw-r--r--nix/modules/impermanence.nix2
5 files changed, 6 insertions, 4 deletions
diff --git a/.env b/.env
index b232917..2b9e0a9 100644
--- a/.env
+++ b/.env
@@ -1,4 +1,4 @@
OPENAI_API_KEY=nothing
OPENAI_BASE_URL="http://localhost:11434/v1"
-OPENAI_MODEL=qwen3-coder:latest
+OPENAI_MODEL=bjoernb/qwen3-coder-30b-1m:latest
TAVILY_API_KEY=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
diff --git a/agenda.org b/agenda.org
index cf46700..a584af1 100644
--- a/agenda.org
+++ b/agenda.org
@@ -55,7 +55,7 @@ These are one-time tasks that are scheduled at a particular date, and that don't
schedules.
** Appointments
These are tasks related to my appointments which have to be at a specific time.
-*** TODO Appointment Call
+*** DONE Appointment Call
I have an appointment in a couple days.
SCHEDULED: <2025-09-16 Tue 15:45>
*** TODO Friends Stay a Night
diff --git a/config/nix.org b/config/nix.org
index 614878f..b4b1b63 100644
--- a/config/nix.org
+++ b/config/nix.org
@@ -1195,7 +1195,7 @@ This is my impermanence profile, which removes all files on reboot except for th
umount /btrfs_tmp
'' else "");
- boot.initrd.luks.devices = (if (! (config.monorepo.vars.fileSystem == "btrfs")) then {
+ boot.initrd.luks.devices = (if (config.monorepo.vars.fileSystem == "btrfs") then {
crypted = {
device = "/dev/disk/by-partlabel/disk-main-luks";
};
@@ -3517,6 +3517,7 @@ standard.
g = "git";
v = "vim";
py = "python3";
+ build-installer = "nix build $HOME/monorepo/nix#nixosConfigurations.installer.config.system.build.isoImage";
rb = "sudo nixos-rebuild switch --flake $HOME/monorepo/nix#${systemHostName}";
nfu = "cd ~/monorepo/nix && git add . && git commit -m \"new flake lock\" && nix flake update";
usync = "rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@${config.monorepo.vars.remoteHost}:/var/www/${config.monorepo.vars.internetName}-website/";
diff --git a/nix/modules/home/zsh.nix b/nix/modules/home/zsh.nix
index 574e6ac..78f2cc6 100644
--- a/nix/modules/home/zsh.nix
+++ b/nix/modules/home/zsh.nix
@@ -29,6 +29,7 @@
g = "git";
v = "vim";
py = "python3";
+ build-installer = "nix build $HOME/monorepo/nix#nixosConfigurations.installer.config.system.build.isoImage";
rb = "sudo nixos-rebuild switch --flake $HOME/monorepo/nix#${systemHostName}";
nfu = "cd ~/monorepo/nix && git add . && git commit -m \"new flake lock\" && nix flake update";
usync = "rsync -azvP --chmod=\"Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r\" ~/website_html/ root@${config.monorepo.vars.remoteHost}:/var/www/${config.monorepo.vars.internetName}-website/";
diff --git a/nix/modules/impermanence.nix b/nix/modules/impermanence.nix
index d728b6a..e2abf3d 100644
--- a/nix/modules/impermanence.nix
+++ b/nix/modules/impermanence.nix
@@ -32,7 +32,7 @@
umount /btrfs_tmp
'' else "");
- boot.initrd.luks.devices = (if (! (config.monorepo.vars.fileSystem == "btrfs")) then {
+ boot.initrd.luks.devices = (if (config.monorepo.vars.fileSystem == "btrfs") then {
crypted = {
device = "/dev/disk/by-partlabel/disk-main-luks";
};