Files
dotfiles/nix/modules/stylix/home.nix
2025-09-23 11:52:13 +00:00

23 lines
251 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.stylix;
in
{
imports = [
#./shared.nix
inputs.stylix.homeModules.stylix
];
config = {
stylix.enable = true;
stylix.targets.hyprland.enable = true;
};
}