diff options
author | stuebinm | 2022-02-04 19:07:21 +0100 |
---|---|---|
committer | stuebinm | 2022-02-04 19:07:21 +0100 |
commit | f486a1f424d49ff0ecc73e94cd2f17146a555cd9 (patch) | |
tree | 39692052ca0662d889512de9d2714362b20d0243 /home | |
parent | 5ec27e6cd58d698c37172be087efeb69691086d1 (diff) |
home: smaller tweaks
Diffstat (limited to '')
-rw-r--r-- | home/home.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/home/home.nix b/home/home.nix index 57aa9b2..f61e7d8 100644 --- a/home/home.nix +++ b/home/home.nix @@ -83,7 +83,7 @@ pj = "pijul"; nix-shell = "nix-shell --command fish"; le = "exa"; - ll = "exa -lh --grid --icons"; + ll = "exa -lh --icons"; llt = "exa -lh --tree --icons"; lt = "exa --tree --icons"; agenda = "almanac month ~/.cache/feedsync/*"; @@ -95,6 +95,12 @@ }; }; + programs.kitty = { + enable = true; + extraConfig = '' + background_opacity 0.8 + ''; + }; systemd.user.services.syncical = let feeds = (import inputs.feeds).ical; in { Unit.Description = "syncs ical feeds for almanac agenda"; @@ -114,7 +120,7 @@ enable = true; urls = (import ./newsboat-public.nix) ++ (import inputs.feeds).rss; browser = pkgs.lynx.outPath + "/bin/lynx"; - reloadThreads = 100; + reloadThreads = 200; queries = { unread = ''unread="yes"''; security = ''tags # "security"''; @@ -205,6 +211,7 @@ programs.htop = { + package = pkgs.htop-vim; enable = true; settings = { fields = "0 48 17 18 38 46 47 49 1"; |