diff options
author | Brian Picciano <me@mediocregopher.com> | 2024-06-14 16:41:51 +0200 |
---|---|---|
committer | Brian Picciano <me@mediocregopher.com> | 2024-06-14 16:41:51 +0200 |
commit | 9bbdb5b63b693888f5a5bbb1c57a5a42928053bd (patch) | |
tree | f6da4dd9b130633a964dd7f9f4af54d2978e008d /awesome | |
parent | 0856b53afe74619a072e3753442ff05aa94291ee (diff) |
Upgrade everything to 24.05
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 |