From fbe6dbf84a368c16ee048e6ff445536e843117cc Mon Sep 17 00:00:00 2001 From: chase Date: Tue, 2 Sep 2025 22:53:15 -0400 Subject: [PATCH] Add blocktube extension, license-templates Emacs package, wireguard VPN --- home/desktop.nix | 1 + home/emacs/init.el | 3 +++ hosts/anzu/configuration.nix | 16 +++++++++++----- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/home/desktop.nix b/home/desktop.nix index 4a90b93..4855433 100644 --- a/home/desktop.nix +++ b/home/desktop.nix @@ -49,6 +49,7 @@ awesome-rss betterttv bitwarden + blocktube facebook-container flagfox hyperchat diff --git a/home/emacs/init.el b/home/emacs/init.el index beeb8b7..e485621 100644 --- a/home/emacs/init.el +++ b/home/emacs/init.el @@ -300,6 +300,9 @@ (global-corfu-mode 1) (corfu-history-mode 1)) +;; license templates +(use-package license-templates) + ;; yasnippet config (use-package yasnippet :defer t diff --git a/hosts/anzu/configuration.nix b/hosts/anzu/configuration.nix index 7d364fc..b3ba066 100644 --- a/hosts/anzu/configuration.nix +++ b/hosts/anzu/configuration.nix @@ -22,6 +22,13 @@ services.xserver.videoDrivers = [ "amdgpu" ]; + boot.loader.systemd-boot.enable = lib.mkForce false; + + boot.lanzaboote = { + enable = true; + pkiBundle = "/var/lib/sbctl"; + }; + # Mount SMB share fileSystems."/mnt/share" = { device = "//haruko/share"; @@ -32,11 +39,10 @@ in ["${automount_opts},credentials=${credentials},uid=1000,gid=100"]; }; - boot.loader.systemd-boot.enable = lib.mkForce false; - - boot.lanzaboote = { - enable = true; - pkiBundle = "/var/lib/sbctl"; + networking.wg-quick.interfaces = { + wg0 = { + configFile = "/home/chase/wg0.conf"; + }; }; system.stateVersion = "24.11";