|
@ -365,6 +365,7 @@ nixos = nixpkgs.lib.nixosSystem { |
|
|
modules = [ |
|
|
modules = [ |
|
|
./hosts/nixos |
|
|
./hosts/nixos |
|
|
<<module-x11>> |
|
|
<<module-x11>> |
|
|
|
|
|
<<module-xdg>> |
|
|
<<module-flakes>> |
|
|
<<module-flakes>> |
|
|
<<module-cachix>> |
|
|
<<module-cachix>> |
|
|
<<module-home-manager>> |
|
|
<<module-home-manager>> |
|
@ -470,6 +471,7 @@ acernitro = nixpkgs.lib.nixosSystem { |
|
|
modules = [ |
|
|
modules = [ |
|
|
./hosts/acernitro |
|
|
./hosts/acernitro |
|
|
<<module-x11>> |
|
|
<<module-x11>> |
|
|
|
|
|
<<module-xdg>> |
|
|
<<module-flakes>> |
|
|
<<module-flakes>> |
|
|
<<module-cachix>> |
|
|
<<module-cachix>> |
|
|
<<module-nvidia>> |
|
|
<<module-nvidia>> |
|
@ -1606,6 +1608,18 @@ ERC[fn:43] is a powerful, modular, and extensible IRC client for GNU/Emacs[fn:2] |
|
|
erc-track-exclude-types '("JOIN" "NICK" "QUIT" "MODE") |
|
|
erc-track-exclude-types '("JOIN" "NICK" "QUIT" "MODE") |
|
|
erc-lurker-hide-list '("JOIN" "PART" "QUIT")) |
|
|
erc-lurker-hide-list '("JOIN" "PART" "QUIT")) |
|
|
|
|
|
|
|
|
|
|
|
;; Configure the `erc-fill-column' to use the full buffer. |
|
|
|
|
|
(make-variable-buffer-local 'erc-fill-column) |
|
|
|
|
|
(add-hook 'window-configuration-change-hook |
|
|
|
|
|
'(lambda () |
|
|
|
|
|
(save-excursion |
|
|
|
|
|
(walk-windows |
|
|
|
|
|
(lambda (w) |
|
|
|
|
|
(let ((buffer (window-buffer w))) |
|
|
|
|
|
(set-buffer buffer) |
|
|
|
|
|
(when (eq major-mode 'erc-mode) |
|
|
|
|
|
(setq erc-fill-column (- (window-width w) 2))))))))) |
|
|
|
|
|
|
|
|
;; Connect to IRC via `erc'. |
|
|
;; Connect to IRC via `erc'. |
|
|
(defun dotfiles/erc-connect () |
|
|
(defun dotfiles/erc-connect () |
|
|
"Connected to IRC via `erc'." |
|
|
"Connected to IRC via `erc'." |
|
|