nixfiles/nixos/environments/sway/profile-inheritance.nix

9 lines
157 B
Nix

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