From b639a6cd850c24c26608a2af92dab50cf56d6e4f Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 2 Mar 2024 07:51:45 +0100 Subject: [PATCH] init flake --- flake.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 flake.nix 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 ]; + + }; + }; +}