Funkwhale 1.3.3 for NixOS 23.05
Below is an example of a nixos configuration using this flake :
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
inputs.funkwhale.url = "github:mmai/funkwhale-flake";
outputs = { self, nixpkgs, funkwhale }:
let
system = "x86_64-linux";
djangoSecretFile = pkgs.writeText "djangoSecret" "test123"; # DON'T DO THIS IN PRODUCTION - the password file will be world-readable in the Nix Store!
in {
nixosConfigurations = {
server-hostname = nixpkgs.lib.nixosSystem {
system = system;
modules = [
nixpkgs.nixosModules.notDetected
funkwhale.nixosModule
( { config, pkgs, ... }:
{ imports = [ ./hardware-configuration.nix ];
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nixpkgs.overlays = [ funkwhale.overlay ];
services.funkwhale = {
enable = true;
hostname = "funkwhale.rhumbs.fr";
defaultFromEmail = "[email protected]";
protocol = "https";
# forceSSL = false; # uncomment when LetsEncrypt needs to access "http:" in order to check domain
api = {
djangoSecretKeyFile = "${djangoSecretFile}";
};
};
security.acme = {
email = "[email protected]";
acceptTerms = true;
};
# Overrides default 30M
services.nginx.clientMaxBodySize = "100m";
services.fail2ban.enable = true;
networking.firewall.allowedTCPPorts = [ 80 443 ];
})
];
};
};
};
}
- Copy audio files to the server on the /srv/funkwhale/music/import/ directory
- execute the import command as funkwhale user, with the library id as a parameter
su -l funkwhale -s /bin/sh -c "funkwhale-manage import_files <your_library_id> '/srv/funkwhale/music/imports' --recursive --noinput --in-place"
- start the funkwhale services in a container on the local machine :
make local
- wait 30s for the bootstraping of funkwhale services, then create the super user :
make superuser
- connect to the local service:
Get the ip address of the container :
machinectl
, which output something like this :
MACHINE CLASS SERVICE OS VERSION ADDRESSES
funkwhale container systemd-nspawn nixos 23.05 10.233.2.2…
Then browse to the ip firefox http://10.233.2.2
and login with the super user credentials you created.