maxwell/packages.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-20 01:11:28 +02:00
{ config, pkgs, lib, ... }:
let
unstable = import <nixos-unstable> { };
in
{
nixpkgs.overlays = lib.singleton
(self: super:
{ maxwell-notify = self.callPackage ./custom/packages/maxwell-notify.nix
{ homeserver = "https://${config.var.hostname}/_matrix/client/r0";
roomId = "!FsUSHSNMPMVTFFcvJo:maxwell.ydns.eu";
2020-10-26 01:59:29 +01:00
authToken = config.secrets.passwords.matrix;
2020-10-20 01:11:28 +02:00
};
2021-06-18 18:20:05 +02:00
searx = super.searx.overrideAttrs (old: {
patches = [
# Fix a crash, remove with the next update
(self.fetchpatch {
url = "https://github.com/searx/searx/commit/9c10b150963babb7f0b52081693a42b2e61eede9.patch";
sha256 = "0svp8799628wja2hq59da6rxqi99am8p6hb8y27ciwzsjz0wwba7";
})
];
});
2020-10-20 01:11:28 +02:00
monero = unstable.monero;
element-web = unstable.element-web;
});
environment.systemPackages = with pkgs; [
# utilities
2021-02-18 11:13:42 +01:00
iftop curl tree neovim
nix-script openssl
2021-03-25 19:03:34 +01:00
jq ack sshfs abduco
2020-10-20 01:11:28 +02:00
# backup
bup git nfs-utils
# admin
dnsutils
matrix-synapse
maxwell-notify
smartmontools
];
}