diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..19cd770 --- /dev/null +++ b/flake.nix @@ -0,0 +1,13 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + + outputs = { self, nixpkgs }@attrs: { + # replace 'joes-desktop' with your hostname here. + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = attrs; + modules = [ ./configuration.nix ./forgejo.nix ./nextcloud.nix ./audiobooks.nix ./jellyfin.nix ]; + + }; + }; +}