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

9 lines
158 B
Nix

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