nix-dotfiles/modules/bottom.nix
2021-05-22 15:00:23 +02:00

13 lines
302 B
Nix

{ pkgs, lib, ... }:
let
unstable = import <nixpkgs> {};
tomlGenerate = (pkgs.formats.toml {}).generate "bottom-toml";
in {
home.packages = with unstable; [ bottom ];
xdg.configFile."bottom/bottom.toml".source = tomlGenerate {
"flags" = {
"left_legend" = true;
"color" = "nord";
};
};
}