Natural progress. Finished status notification and added some temporary programs (vms)
This commit is contained in:
parent
e706230566
commit
f2222f56d8
15 changed files with 910 additions and 341 deletions
22
home/wayland/waybar/default.nix
Normal file
22
home/wayland/waybar/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
inherit (config.lib.stylix) colors;
|
||||
|
||||
waybar_config = import ./config.nix {inherit osConfig config lib pkgs;};
|
||||
waybar_style_content = import ./style.nix {inherit colors;};
|
||||
waybar_style = pkgs.writeText "waybar-style.css" waybar_style_content;
|
||||
in {
|
||||
home.packages = with pkgs.python3Packages; [requests];
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
package = pkgs.waybar;
|
||||
settings = waybar_config;
|
||||
# style = waybar_style;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue