nixdots/modules/home-manager/desktop/default.nix
2026-02-28 19:55:43 +03:00

17 lines
254 B
Nix

{
config,
lib,
...
}: {
config = lib.mkIf config.tulg.desktop.enable {
imports = [
./noctalia.nix
./symlink.nix
./hyprland.nix
./spicetify.nix
./browsers/zen.nix
./vscode.nix
./pkgs.nix
];
};
}