From 00c9e35779cbb298d6395a6e2c2534007a92976f Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 21 Mar 2025 04:52:46 -0700 Subject: add a ton of VPS upgrades; update website; live life --- nix/modules/home/default.nix | 1 + nix/modules/home/emacs.nix | 2 +- nix/modules/home/mpd.nix | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) (limited to 'nix/modules/home') diff --git a/nix/modules/home/default.nix b/nix/modules/home/default.nix index fa18632..72fcc31 100644 --- a/nix/modules/home/default.nix +++ b/nix/modules/home/default.nix @@ -84,6 +84,7 @@ ++ (if config.monorepo.profiles.workstation.enable then (with pkgs; [ open-webui + mumble ]) else []) ++ (if config.monorepo.profiles.lang-js.enable then (with pkgs; [ diff --git a/nix/modules/home/emacs.nix b/nix/modules/home/emacs.nix index 4358ca3..71e234c 100644 --- a/nix/modules/home/emacs.nix +++ b/nix/modules/home/emacs.nix @@ -3,7 +3,7 @@ programs.emacs = { enable = lib.mkDefault config.monorepo.profiles.graphics.enable; - package = pkgs.emacs29-pgtk; + package = pkgs.emacs30-pgtk; extraConfig = '' (setq debug-on-error t) (org-babel-load-file diff --git a/nix/modules/home/mpd.nix b/nix/modules/home/mpd.nix index 087b19a..3ab9d2d 100644 --- a/nix/modules/home/mpd.nix +++ b/nix/modules/home/mpd.nix @@ -24,6 +24,20 @@ always_on "yes" # prevent MPD from disconnecting all listeners when playback is stopped. tags "yes" # httpd supports sending tags to listening streams. } +audio_output { + type "shout" + encoding "ogg" + name "my cool stream" + host "localhost" + port "8000" + mount "/example.ogg" + user "source" + password "" + + bitrate "64" + format "44100:16:1" + description "Nullring public radio" +} ''; }; } -- cgit v1.3