dotfiles/overlays/ifstate/default.nix
magic_rb 2c0626fbd2
ifstate: fix module ordering and expose module as part of flake
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-08-14 15:57:02 +02:00

9 lines
242 B
Nix

{inputs, ...}: {
flake.nixosModules.ifstate = ./module.nix;
flake.overlays.ifstate = final: prev: {
ifstate = final.python3.pkgs.callPackage ./ifstate.nix {
wgnlpy = final.python3.pkgs.callPackage ./wgnlpy.nix {};
};
};
}