Go, bottom and gpg

This commit is contained in:
Filippo Berto 2021-05-13 15:53:09 +02:00
parent cbd4278c77
commit f63f05579a
6 changed files with 69 additions and 120 deletions

11
modules/bottom.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
let
tomlGenerate = (pkgs.formats.toml {}).generate "bottom-toml";
in {
home.packages = [ pkgs.bottom ];
xdg.configFile."bottom/bottom.toml".source = tomlGenerate {
"flags" = {
"left_legend" = true;
};
};
}