hosts/pneuma: add weechat
Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
parent
9b820a180f
commit
a43c76c560
|
@ -73,6 +73,7 @@
|
|||
nixpkgs.overlays = [
|
||||
emacs-overlay.overlay
|
||||
(import ./overlays/tree-sitter-typescript.nix)
|
||||
(import ./overlays/weechat.nix)
|
||||
];
|
||||
})
|
||||
./common
|
||||
|
@ -331,10 +332,7 @@
|
|||
joker = mkSystem [ ./hosts/joker ./hardware/location/YYZ ];
|
||||
|
||||
# cloud
|
||||
akko = mkSystem [
|
||||
./hosts/akko
|
||||
./hardware/location/YYZ
|
||||
];
|
||||
akko = mkSystem [ ./hosts/akko ./hardware/location/YYZ ];
|
||||
|
||||
firgu = mkSystem [ ./hosts/firgu ./hardware/location/YYZ ];
|
||||
};
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
virtualisation.docker.enable = true;
|
||||
users.motd = builtins.readFile ./motd;
|
||||
services.tailscale.port = 15430;
|
||||
environment.systemPackages = with pkgs; [ wasmtime ];
|
||||
environment.systemPackages = with pkgs; [ wasmtime weechat ];
|
||||
|
||||
networking.hostName = "pneuma";
|
||||
networking.hostId = "34fbd94b";
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
final: prev: {
|
||||
weechat = with prev.weechatScripts;
|
||||
prev.weechat.override {
|
||||
configure = { availablePlugins, ... }: { scripts = [ multiline ]; };
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue