there. Also moved around some categories. Installed texlab as an LSP for LaTeX. Installed Haskell and tools. Installed fonts rubik and archivo, the latter creating a flake and derivation for it. Added a desktop entry for kakoune. Added a GeoGuessr Join search tool for Firefox. Changed background to kuwait boat image; kept bord around. Added dunst notifications toggle key but I don't think it works yet. Disabled scroll to change volume in waybar volume module.
20 lines
524 B
Nix
20 lines
524 B
Nix
{ pkgs }:
|
|
with pkgs;
|
|
stdenv.mkDerivation rec {
|
|
name = "archivo";
|
|
version = "b5d6398";
|
|
src = fetchFromGitHub {
|
|
owner = "Omnibus-Type";
|
|
repo = "Archivo";
|
|
rev = version;
|
|
hash = "sha256-kMyHDyslAJW8pAw8SIdbKjQrTbPtmKOCDAtr48LrdNI="; # TODO fix
|
|
};
|
|
|
|
# sourceRoot = "fonts/ttf";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
cp -a fonts/ttf/*.ttf $out/share/fonts/truetype
|
|
'';
|
|
}
|