11 lines
238 B
Nix
11 lines
238 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
(lib.mkIf (config.custom.gui.enable && false) {
|
|
home-manager.users."riley" = {
|
|
services.polybar = {
|
|
enable = true;
|
|
script = "polybar bar &";
|
|
config = {}; # TODO
|
|
};
|
|
};
|
|
})
|