Created
March 14, 2023 22:34
-
-
Save heywoodlh/844ae2fd93e90e670744a87945184e90 to your computer and use it in GitHub Desktop.
Simple Plex configuration for MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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