12 lines
217 B
Nix
12 lines
217 B
Nix
{tree, ...}: {
|
|
imports = with tree; [
|
|
presets.nixos.desktopBase
|
|
profiles.gui.environments.gnome
|
|
];
|
|
home-manager.users.chaos = {
|
|
imports = with tree; [
|
|
home.gui.environments.gnome
|
|
];
|
|
};
|
|
}
|