more or less wayland support

This commit is contained in:
CDaut 2024-04-25 09:33:20 +02:00
parent ada74f1c4e
commit 87f9fb7bb6
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 188 additions and 7 deletions

View file

@ -0,0 +1,24 @@
{ 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 = [
];
};
}