How to Install Overcast on NixOS
Overcast is a simple, lightweight podcast client for macOS. If you're running NixOS, you can install Overcast by following these steps:
Step 1: Add the Overcast Channel to Your NixOS Configuration
To get started, you'll need to add the Overcast channel to your NixOS configuration. Open up your configuration file (usually located at /etc/nixos/configuration.nix) in a text editor and add the following line to the nixpkgs.config.packageOverrides section:
nixpkgs.config.packageOverrides = pkgs: {
overcast = pkgs.callPackage (builtins.fetchGit {
url = "https://github.com/andrewchilds/overcast";
ref = "master";
}) {};
};
This will add the Overcast channel to your system's list of package sources.
Step 2: Install Overcast
Once you've added the Overcast channel, you can install it like any other package using the nix-env command:
sudo nix-env -iA nixpkgs.overcast
This will download and install the latest version of Overcast from the channel, and add it to your system path.
Step 3: Run Overcast
To run Overcast, simply open up a terminal and type:
overcast
This will launch the Overcast GUI, allowing you to browse, download, and listen to your favorite podcasts.
Conclusion
That's it! You've now installed Overcast on your NixOS system. Enjoy listening to your favorite podcasts with this simple and lightweight client.