mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 01:56:13 +01:00
2c0626fbd2
Signed-off-by: magic_rb <magic_rb@redalder.org>
9 lines
242 B
Nix
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 {};
|
|
};
|
|
};
|
|
}
|