Sat Jun 1 06:06:00 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-01 18:06:00 +02:00
parent 681e813b0b
commit 51b2a2f7a8
2 changed files with 18 additions and 0 deletions

View File

@ -10,6 +10,11 @@
url = "https://github.com/hyprwm/Hyprland"; url = "https://github.com/hyprwm/Hyprland";
submodules = true; submodules = true;
}; };
waybar = {
type = "git";
url = "https://github.com/thomasave/Waybar";
submodules = true;
};
split-monitor-workspaces = { split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces"; url = "github:Duckonaut/split-monitor-workspaces";
inputs.hyprland.follows = "hyprland"; inputs.hyprland.follows = "hyprland";

View File

@ -0,0 +1,13 @@
{ inputs
, config
, pkgs
, ...
}:
{
programs.waybar = {
enable = true;
package = inputs.waybar.packages.${pkgs.system}.waybar;
};
}