a little WIP flake to install awakened poe trade, and exiled exchange.
| modules | ||
| pkgs | ||
| .envrc | ||
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
| statix.toml | ||
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
];