first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
12
modules/home/waybar/waybar.nix
Normal file
12
modules/home/waybar/waybar.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd = {
|
||||
enable = false;
|
||||
target = "graphical-session.target";
|
||||
};
|
||||
};
|
||||
programs.waybar.package = pkgs.waybar.overrideAttrs (oa: {
|
||||
mesonFlags = (oa.mesonFlags or [ ]) ++ [ "-Dexperimental=true" ];
|
||||
});
|
||||
}
|
||||
Reference in a new issue