maxwell/packages.nix

39 lines
889 B
Nix
Raw Permalink Normal View History

2020-10-20 01:11:28 +02:00
{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = lib.singleton
(self: super:
{ maxwell-notify = self.callPackage ./custom/packages/maxwell-notify.nix
{ homeserver = "https://${config.var.hostname}/_matrix/client/r0";
2024-10-22 23:54:45 +02:00
roomId = "!mKSxsQWEtUvOBTfjDU:eurofusion.eu";
2020-10-26 01:59:29 +01:00
authToken = config.secrets.passwords.matrix;
2020-10-20 01:11:28 +02:00
};
2024-06-30 22:41:18 +02:00
haskellPackages = super.haskellPackages.extend (hself: hsuper:
2025-01-09 21:52:03 +01:00
{ breve = super.haskell.lib.overrideCabal hsuper.breve
(old: { broken = false; });
2024-06-30 22:41:18 +02:00
});
2020-10-20 01:11:28 +02:00
});
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
2023-07-11 22:05:57 +02:00
bup git
2020-10-20 01:11:28 +02:00
# admin
dnsutils
matrix-synapse
2024-10-22 23:54:45 +02:00
matrix-synapse-tools.synadm
2020-10-20 01:11:28 +02:00
maxwell-notify
smartmontools
2023-07-11 22:05:57 +02:00
# namecoin
2023-12-15 00:26:06 +01:00
namecoind haskellPackages.rosa
2020-10-20 01:11:28 +02:00
];
}