nixos-selfhost/flake.nix

25 lines
556 B
Nix
Raw Normal View History

2024-03-02 07:51:45 +01:00
{
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;
2024-03-06 22:14:44 +01:00
modules = [
./configuration.nix
./audiobooks.nix
2024-03-24 22:37:16 +01:00
./tunnel.nix
2024-03-24 22:51:46 +01:00
./forgejo.nix
2024-03-25 00:18:55 +01:00
./nextcloud.nix
2024-03-24 22:51:46 +01:00
./jellyfin.nix
./filebrowser.nix
2024-03-25 00:18:55 +01:00
./tail.nix
2024-03-24 22:37:16 +01:00
# ./matrix.nix
# ./coturn.nix
2024-03-06 22:14:44 +01:00
];
2024-03-02 07:51:45 +01:00
};
};
}