33 lines
672 B
Nix
33 lines
672 B
Nix
{ 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";
|
|
roomId = "!FsUSHSNMPMVTFFcvJo:maxwell.ydns.eu";
|
|
authToken = config.secrets.passwords.matrix;
|
|
};
|
|
});
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# utilities
|
|
iftop curl tree neovim
|
|
nix-script openssl
|
|
jq ack sshfs abduco
|
|
|
|
# backup
|
|
bup git
|
|
|
|
# admin
|
|
dnsutils
|
|
matrix-synapse
|
|
maxwell-notify
|
|
smartmontools
|
|
|
|
# namecoin
|
|
namecoin haskellPackages.rosa
|
|
];
|
|
|
|
}
|