nixfiles/presets/nixos/desktopGnome.nix

12 lines
217 B
Nix
Raw Normal View History

{tree, ...}: {
imports = with tree; [
2023-09-18 03:56:58 +01:00
presets.nixos.desktopBase
profiles.gui.environments.gnome
];
home-manager.users.chaos = {
imports = with tree; [
home.gui.environments.gnome
];
};
}