1
Fork 0
satellite/home/adrielus/features/desktop/common/polybar/default.nix

29 lines
602 B
Nix
Raw Normal View History

2023-01-10 02:38:06 +01:00
{ pkgs, lib, paths, config, ... }:
let
base16-polybar = pkgs.fetchFromGitHub {
owner = "tinted-theming";
repo = "base16-polybar";
sha256 = "142fmqm324gy3qsv48vijm5k81v6mw85ym9mmhnvyv2q2ndg5rix";
rev = "2f6dd973a9075dabccd26f1cded09508180bf5fe";
};
in
{
services.polybar = {
enable = true;
extraConfig = ''
; Generated theme
${builtins.readFile (config.scheme base16-polybar)}
; Actual config
include-file = ${paths.dotfiles}/polybar/config.ini
'';
};
xsession = {
enable = true;
initExtra = ''
polybar main &
'';
};
}