24 lines
369 B
Nix
24 lines
369 B
Nix
{ pkgs, ... }:
|
|
let
|
|
colors = {
|
|
background = "#222";
|
|
background-alt = "#444";
|
|
foreground = "#dfdfdf";
|
|
foreground-alt = "#555";
|
|
primary = "#ffb52a";
|
|
secondary = "#e60053";
|
|
alert = "#bd2c40";
|
|
accent = "#ffbb00";
|
|
};
|
|
in
|
|
{
|
|
programs.waybar = {
|
|
enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
};
|
|
settings = [
|
|
|
|
];
|
|
};
|
|
}
|