There is nothing less I want to build for aarch64 than this

This commit is contained in:
kat witch 2021-09-02 05:26:39 +01:00
parent 3e52c7648a
commit 9e3aa24078
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
7 changed files with 21 additions and 11 deletions

View file

@ -3,6 +3,7 @@
{
imports = [
./vim
./rink.nix
./zsh.nix
./rustfmt.nix
./packages.nix

View file

@ -0,0 +1,38 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
rink-readline
];
xdg.configFile."rink/config.toml".text = lib.toTOML {
colors = {
enabled = true;
theme = "my_theme";
};
currency = {
cache_duration = "1h";
enabled = true;
endpoint = "https://rinkcalc.app/data/currency.json";
timeout = "2s";
};
rink = {
long_output = true;
prompt = "> ";
};
themes = {
my_theme = {
date_time = "default";
doc_string = "italic";
error = "red";
number = "default";
plain = "default";
pow = "default";
prop_name = "cyan";
quantity = "dimmed cyan";
unit = "cyan";
user_input = "bold";
};
};
};
}