a little WIP flake to install awakened poe trade, and exiled exchange.
Find a file
2025-12-12 11:10:38 -05:00
modules init commit 2025-12-07 07:47:39 -05:00
pkgs ee2: bump version 2025-12-12 11:10:38 -05:00
.envrc init commit 2025-12-07 07:47:39 -05:00
.gitignore init commit 2025-12-07 07:47:39 -05:00
flake.lock init commit 2025-12-07 07:47:39 -05:00
flake.nix add justfile for building 2025-12-09 08:04:21 -05:00
justfile add justfile for building 2025-12-09 08:04:21 -05:00
LICENSE init commit 2025-12-07 07:47:39 -05:00
README.md init commit 2025-12-07 07:47:39 -05:00
statix.toml init commit 2025-12-07 07:47:39 -05:00

awakened-poe-flake

what is this?

this repo is a little flake i wrote for myself to automatically wrap and install apt and ee2. i hope you appreciate my custom drawn image

how do i use it?

using flakes

add the flake to your inputs like so

{
  description = "my awesome flake";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
    awakened-poe-flake.url = "git+https://git.flake.sh/notohh/awakened-poe-flake";
  };

  outputs = { self, nixpkgs }@inputs: {
    nixosConfigurations.<hostname> = nixpkgs.lib.nixosSystem {
      specialArgs = {inherit inputs;};
      modules = [
        ./configuration.nix
        # ...
      ];
    };
  };
}

then call the package

  # home.packages for home-manager
  environment.systemPackages = [
    inputs.awakened-poe-flake.packages.${pkgs.stdenv.hostPlatform.system}.<package> 
    # <package> being either awakened-poe-trade or exiled-exchange-2
  ];