Testing weechat
This commit is contained in:
parent
b29402f9cc
commit
6075931eb0
2 changed files with 17 additions and 0 deletions
14
nixos/common/software/cli/weechat.nix
Normal file
14
nixos/common/software/cli/weechat.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
self: super:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ weechat ];
|
||||||
|
|
||||||
|
weechat = super.weechat.override {
|
||||||
|
configure = { availablePlugins, ... }: {
|
||||||
|
scripts = with super.weechatScripts; [
|
||||||
|
weechat-matrix
|
||||||
|
weechat-go
|
||||||
|
weechat-notify-send
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -9,6 +9,9 @@
|
||||||
./common/services/fwupd.nix
|
./common/services/fwupd.nix
|
||||||
./common/services/gnupg-agent.nix
|
./common/services/gnupg-agent.nix
|
||||||
|
|
||||||
|
# CLI Software
|
||||||
|
./common/software/cli/weechat.nix
|
||||||
|
|
||||||
# NixOS Modules
|
# NixOS Modules
|
||||||
./common/modules/fonts.nix # Font Configs
|
./common/modules/fonts.nix # Font Configs
|
||||||
./common/modules/networking.nix # Initial Networking configs
|
./common/modules/networking.nix # Initial Networking configs
|
||||||
|
|
Loading…
Add table
Reference in a new issue