dotfiles/flakes/hyprland/flake.nix
2025-10-20 20:45:26 -05:00

36 lines
706 B
Nix

{
inputs = {
ragenix.url = "github:yaxitech/ragenix";
};
outputs =
{
hyprland,
...
}:
{
nixosModules = {
default =
{
config,
lib,
pkgs,
...
}:
{
imports = [
hyprland.nixosModules.default
];
config = {
_module.args = {
inherit hyprland;
hyprlandPkgs = import hyprland.inputs.nixpkgs {
system = pkgs.stdenv.hostPlatform.system;
config = config.nixpkgs.config or { };
};
};
};
};
};
};
}