Skip to content

Instantly share code, notes, and snippets.

@heywoodlh
Created March 14, 2023 22:34
Show Gist options
  • Save heywoodlh/844ae2fd93e90e670744a87945184e90 to your computer and use it in GitHub Desktop.
Save heywoodlh/844ae2fd93e90e670744a87945184e90 to your computer and use it in GitHub Desktop.
Simple Plex configuration for MacOS
{ config, pkgs, ... }:
{
#package config
nix.package = pkgs.nix;
nixpkgs.config.allowUnfree = true;
#homebrew packages
homebrew = {
enable = true;
onActivation.autoUpdate = true;
onActivation.upgrade = true;
casks = [
"plex"
"radarr"
"sonarr"
"nzbget"
];
};
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
system.stateVersion = 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment