diff options
author | tv <tv@krebsco.de> | 2018-11-28 14:41:56 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-11-28 14:41:56 +0100 |
commit | 1d7fddc064fef5e77c48602e3524949893a92997 (patch) | |
tree | 9b791bed02f715463b925889ddb6720ef131e635 /tv/5pkgs/simple/xmonad-tv | |
parent | d5551ed214479317925239a9801384c9c3aa9add (diff) |
tv xmonad: add currentSystem to executable name
This prevents journal messges like:
XMonad is recompiling and replacing itself another XMonad process because the current process is called "xmonad" but the compiled configuration should be called "xmonad-x86_64-linux"
Diffstat (limited to 'tv/5pkgs/simple/xmonad-tv')
-rw-r--r-- | tv/5pkgs/simple/xmonad-tv/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tv/5pkgs/simple/xmonad-tv/default.nix b/tv/5pkgs/simple/xmonad-tv/default.nix index a2525e06e..430e6a809 100644 --- a/tv/5pkgs/simple/xmonad-tv/default.nix +++ b/tv/5pkgs/simple/xmonad-tv/default.nix @@ -1,6 +1,6 @@ { pkgs, ... }: pkgs.writeHaskellPackage "xmonad-tv" { - executables.xmonad = { + executables."xmonad-${builtins.currentSystem}" = { extra-depends = [ "containers" "extra" |