config/modules/gui/statusbar.nix

12 lines
238 B
Nix
Raw Normal View History

2022-05-23 14:04:21 +02:00
{ pkgs, config, lib, ... }:
(lib.mkIf (config.custom.gui.enable && false) {
2022-05-23 14:04:21 +02:00
home-manager.users."riley" = {
services.polybar = {
enable = true;
2022-05-23 14:06:03 +02:00
script = "polybar bar &";
2022-05-23 14:04:21 +02:00
config = {}; # TODO
};
};
})