nixfiles/nixos/environments/hyprland/profile-inheritance.nix
2024-03-07 17:05:22 -08:00

9 lines
161 B
Nix

{tree, ...}: {
imports = with tree.nixos.profiles; [
graphical
];
home-manager.users.kat.imports = with tree.home.environments; [
hyprland
];
}