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 = [
|
nixpkgs.overlays = [
|
||||||
emacs-overlay.overlay
|
emacs-overlay.overlay
|
||||||
(import ./overlays/tree-sitter-typescript.nix)
|
(import ./overlays/tree-sitter-typescript.nix)
|
||||||
|
(import ./overlays/weechat.nix)
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
./common
|
./common
|
||||||
|
@ -331,10 +332,7 @@
|
||||||
joker = mkSystem [ ./hosts/joker ./hardware/location/YYZ ];
|
joker = mkSystem [ ./hosts/joker ./hardware/location/YYZ ];
|
||||||
|
|
||||||
# cloud
|
# cloud
|
||||||
akko = mkSystem [
|
akko = mkSystem [ ./hosts/akko ./hardware/location/YYZ ];
|
||||||
./hosts/akko
|
|
||||||
./hardware/location/YYZ
|
|
||||||
];
|
|
||||||
|
|
||||||
firgu = mkSystem [ ./hosts/firgu ./hardware/location/YYZ ];
|
firgu = mkSystem [ ./hosts/firgu ./hardware/location/YYZ ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
users.motd = builtins.readFile ./motd;
|
users.motd = builtins.readFile ./motd;
|
||||||
services.tailscale.port = 15430;
|
services.tailscale.port = 15430;
|
||||||
environment.systemPackages = with pkgs; [ wasmtime ];
|
environment.systemPackages = with pkgs; [ wasmtime weechat ];
|
||||||
|
|
||||||
networking.hostName = "pneuma";
|
networking.hostName = "pneuma";
|
||||||
networking.hostId = "34fbd94b";
|
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