diff options
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/awesome/default.nix b/awesome/default.nix index 31e60fb..ca61ec5 100644 --- a/awesome/default.nix +++ b/awesome/default.nix @@ -5,7 +5,6 @@ }: rec { pkgs = (import ../pkgs.nix).stable {}; - pkgs2305 = (import ../pkgs.nix).stable2305 {}; xorgInnerEnv = pkgs.buildEnv { name = "xorg-inner-env"; @@ -72,7 +71,8 @@ EOF # HACK: This sleep is here because phwmon actually creates a separate tray # icon for each thing it monitors, and if the process runs at the same time # as another process which creates a tray icon they can get interleaved. - (sleep 5 && phwmon.py) & + # TODO find a replacement for phwmon + #(sleep 5 && phwmon.py) & ############################################################################ # Init awesome @@ -118,7 +118,8 @@ EOF pkgs.feh pkgs.brightnessctl pkgs.cbatticon - pkgs.phwmon + + #pkgs.phwmon # https://github.com/NixOS/nixpkgs/issues/75478 xorgInnerEnv nativeWrap |