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.
14 lines
305 B
Nix
14 lines
305 B
Nix
{
|
|
description = "Flake containing Archivo font";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
packages.x86_64-linux.archivo =
|
|
let pkgs = import nixpkgs { system = "x86_64-linux"; };
|
|
in pkgs.callPackage ./archivo.nix {};
|
|
|
|
packages.x86_64-linux.default = self.packages.x86_64-linux.archivo;
|
|
|
|
};
|
|
}
|