26 lines
327 B
Nix
26 lines
327 B
Nix
{ pkgs, ... }:
|
|
let
|
|
|
|
script = "~/.config/scripts";
|
|
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
./polybar/bottom.nix
|
|
./polybar/top.nix
|
|
];
|
|
|
|
home-manager.users.grape.services.polybar = {
|
|
enable = true;
|
|
script = "${script}/polybar.sh";
|
|
|
|
config = {
|
|
"global/wm" = {
|
|
override-redirect = false;
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|