17 lines
254 B
Nix
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
|
|
];
|
|
};
|
|
}
|