···11+{
22+ flake.nixosModules.video-editing = { pkgs, ... }: {
33+ environment.systemPackages = with pkgs; [ davinci-resolve ];
44+ };
55+66+ flake.darwinModules.video-editing = { ... }: {
77+ # Davinci resolve is not available for darwin in nixpkgs nor in homebrew.
88+ # todo: search for a simple installation through nix.
99+ };
1010+}
+1-1
modules/hosts/andhrimnir/configuration.nix
···55 modules = [
66 ({ pkgs, ... }: {
77 imports =
88- with inputs.self.modules.nixos;
88+ with inputs.self.nixosModules;
99 with inputs.self.factory;
1010 [
1111 grub
+1-1
modules/hosts/loki/configuration.nix
···77 modules = [
88 ({ pkgs, ... }: {
99 imports =
1010- with inputs.self.modules.nixos;
1010+ with inputs.self.nixosModules;
1111 with inputs.self.factory;
1212 [
1313 systemd-boot
+1-1
modules/hosts/njord/configuration.nix
···44 system = "aarch64-darwin";
55 modules = [
66 ({ ... }: {
77- imports = with inputs.self.modules.darwin; [
77+ imports = with inputs.self.darwinModules; [
88 cosmeak
99 ];
1010