Add blocktube extension, license-templates Emacs package, wireguard VPN

This commit is contained in:
2025-09-02 22:53:15 -04:00
parent 6b71bb213e
commit fbe6dbf84a
3 changed files with 15 additions and 5 deletions

View File

@@ -49,6 +49,7 @@
awesome-rss awesome-rss
betterttv betterttv
bitwarden bitwarden
blocktube
facebook-container facebook-container
flagfox flagfox
hyperchat hyperchat

View File

@@ -300,6 +300,9 @@
(global-corfu-mode 1) (global-corfu-mode 1)
(corfu-history-mode 1)) (corfu-history-mode 1))
;; license templates
(use-package license-templates)
;; yasnippet config ;; yasnippet config
(use-package yasnippet (use-package yasnippet
:defer t :defer t

View File

@@ -22,6 +22,13 @@
services.xserver.videoDrivers = [ "amdgpu" ]; services.xserver.videoDrivers = [ "amdgpu" ];
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.lanzaboote = {
enable = true;
pkiBundle = "/var/lib/sbctl";
};
# Mount SMB share # Mount SMB share
fileSystems."/mnt/share" = { fileSystems."/mnt/share" = {
device = "//haruko/share"; device = "//haruko/share";
@@ -32,11 +39,10 @@
in ["${automount_opts},credentials=${credentials},uid=1000,gid=100"]; in ["${automount_opts},credentials=${credentials},uid=1000,gid=100"];
}; };
boot.loader.systemd-boot.enable = lib.mkForce false; networking.wg-quick.interfaces = {
wg0 = {
boot.lanzaboote = { configFile = "/home/chase/wg0.conf";
enable = true; };
pkiBundle = "/var/lib/sbctl";
}; };
system.stateVersion = "24.11"; system.stateVersion = "24.11";