15 lines
238 B
Nix
15 lines
238 B
Nix
{lib, ...}: {
|
|
options = {
|
|
tulg.desktop.enable = lib.mkEnableOption "gui";
|
|
};
|
|
|
|
imports = [
|
|
./noctalia.nix
|
|
./symlink.nix
|
|
./hyprland.nix
|
|
./spicetify.nix
|
|
./browsers/zen.nix
|
|
./vscode.nix
|
|
./pkgs.nix
|
|
];
|
|
}
|