home: x: setup i3status-rust

This commit is contained in:
Antoine Martin 2021-04-19 14:58:52 +02:00
parent e00685bdb5
commit 4ee7d15cb8
3 changed files with 65 additions and 1 deletions

22
home/x/i3bar.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:
let
isEnabled = config.my.home.x.enable;
in
{
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
alsaUtils # Used by `sound` block
lm_sensors # Used by `temperature` block
];
programs.i3status-rust = {
enable = true;
bars = {
top = {
theme = "gruvbox-light";
};
};
};
};
}