From: Preston Pan Date: Sat, 20 Sep 2025 09:51:47 +0000 (-0700) Subject: fix impermanence yet again X-Git-Url: https://ret2pop.net/gitweb/%22./%22/%22https:/polyfill.io/static/git-logo.png?a=commitdiff_plain;h=7d8501ebc97fc238d73dee4638ab58eb32a11dc1;p=monorepo.git fix impermanence yet again --- 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"; };