maxwell/packages.nix

37 lines
746 B
Nix
Raw Permalink 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
};
monero = unstable.monero;
element-web = unstable.element-web;
});
environment.systemPackages = with pkgs; [
# utilities
iftop curl ranger neovim
nix-script openssl
2020-10-20 01:11:28 +02:00
jq ack
# backup
bup git nfs-utils
# admin
dnsutils
matrix-synapse
maxwell-notify
smartmontools
];
}