Music + GPG agent forwarding + all sorts.

This commit is contained in:
kat witch 2021-03-09 00:45:18 +00:00
parent 2c6230dd63
commit c548add318
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
24 changed files with 525 additions and 56 deletions

View file

@ -7,7 +7,7 @@ let
dino = super.callPackage "${sources.qyliss-nixlib}/overlays/patches/dino" {
inherit (super) dino;
};
discord = unstable.discord.override { nss = self.nss_latest; };
arc = import sources.arc-nixexprs { pkgs = super; };

View file

@ -3,9 +3,7 @@
stdenv.mkDerivation {
name = "kat-weather";
buildInputs = [
(python36.withPackages (pythonPackages: with pythonPackages; [
requests
]))
(python36.withPackages (pythonPackages: with pythonPackages; [ requests ]))
];
unpackPhase = "true";
installPhase = ''
@ -13,4 +11,4 @@ stdenv.mkDerivation {
cp ${./weather.py} $out/bin/kat-weather
chmod +x $out/bin/kat-weather
'';
}
}