12 lines
216 B
Nix
12 lines
216 B
Nix
|
{tree, ...}: {
|
||
|
imports = with tree; [
|
||
|
presets.nixos.desktop-base
|
||
|
profiles.gui.environments.sway
|
||
|
];
|
||
|
home-manager.users.chaos = {
|
||
|
imports = with tree; [
|
||
|
home.gui.environments.sway
|
||
|
];
|
||
|
};
|
||
|
}
|