diff --git a/hosts/tsuki/home.nix b/hosts/tsuki/home.nix index 479719f..8e5cca9 100755 --- a/hosts/tsuki/home.nix +++ b/hosts/tsuki/home.nix @@ -21,6 +21,7 @@ username = "notoh"; homeDirectory = "/home/notoh"; packages = with pkgs; [ + webcord discord spotify-player obs-studio @@ -30,6 +31,7 @@ virt-manager imv mpv + rustypaste-cli playerctl logseq cryptomator @@ -44,7 +46,6 @@ runelite prismlauncher (callPackage ../../pkgs/chatterino7 {}) - (callPackage ../../pkgs/rustypaste-cli {}) ]; stateVersion = "23.05"; diff --git a/pkgs/rustypaste-cli/default.nix b/pkgs/rustypaste-cli/default.nix deleted file mode 100644 index f96e776..0000000 --- a/pkgs/rustypaste-cli/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - lib, - rustPlatform, - fetchFromGitHub, - ... -}: -rustPlatform.buildRustPackage rec { - pname = "rustypaste-cli"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "orhun"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-Jl7fytDIW6MLY6VX7rDuX9PcZaIqENQbUTMUJKCa8Mg="; - }; - - cargoHash = "sha256-hICwrgzNpyYmNW1gEKgTsSjWyqCaOHc4X37O0R2oSzY="; - - meta = with lib; { - description = "A CLI tool for rustypaste "; - homepage = "https://github.com/orhun/rustypaste-cli"; - license = licenses.mit; - maintainers = with maintainers; [notohh]; - }; -}