Added xdg-terminal-exec Added papirus icon theme; not yet active Enabled fcitx for sway Enabled sway autolaunch on login in tty1 Set git config
18 lines
386 B
Nix
18 lines
386 B
Nix
{ pkgs }:
|
|
with pkgs;
|
|
stdenv.mkDerivation rec {
|
|
name = "xdg-terminal-exec";
|
|
version = "efc3517";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vladimir-csp";
|
|
repo = "xdg-terminal-exec";
|
|
rev = version;
|
|
hash = "sha256-uLUHvSjxIjmy0ejqLfliB6gHFRwyTWNH1RL5kTXebUM="; # TODO will fix
|
|
};
|
|
|
|
installPhase = ''
|
|
install -Dm755 xdg-terminal-exec $out/bin/xdg-terminal-exec
|
|
'';
|
|
}
|