01e84a3561
Introduce `nooctalia-plugins` options to control nightly‑shell plugins and make their activation conditional. Update host home‑modules to enable a subset of plugins (keybind‑cheatsheet, kde‑connect, screenshot, ntfy) on desktop and laptop configurations. Disable numerous default applications and system services (e.g., Zed, browsers, Docker, Flatpak, calendar, GameMode, Steam, media tools, communication apps) in the default host configuration.
83 lines
3.1 KiB
Nix
83 lines
3.1 KiB
Nix
_: {
|
||
/*
|
||
Development editors and IDEs
|
||
*/
|
||
vscodium.enable = false; # VSCodium: a free and open-source "demicrosofted" VSCode
|
||
zed-editor = {
|
||
enable = false; # Zed Editor: a modern, high‑performance code editor
|
||
remote-server.enable = false; # Remote Server: enable remote editing capabilities
|
||
};
|
||
opencode.enable = false; # OpenCode: terminal coding agent
|
||
ollama.enable = false; # Ollama: Local Llms
|
||
|
||
/*
|
||
Web browsers
|
||
*/
|
||
librewolf.enable = false; # Librewolf: a privacy-focused Firefox fork
|
||
ungoogled-chromium.enable = false; # Ungoogled Chromium: a privacy-focused Chromium fork
|
||
|
||
/*
|
||
System utilities
|
||
*/
|
||
btop.enable = true; # Btop: a resource monitor for the terminal
|
||
easyeffects.enable = false; # EasyEffects: Audio effects for PipeWire applications
|
||
cava.enable = false; # Cava: terminal audio visualizer
|
||
fastfetch.enable = true; # Fastfetch: a fast system information tool
|
||
|
||
/*
|
||
Communication and synchronization
|
||
*/
|
||
kdeconnect.enable = false; # KDE Connect: integrate your phone and desktop
|
||
nextcloud-client.enable = false; # Nextcloud Client: sync files with a Nextcloud server
|
||
vesktop.enable = false; # Vesktop: a community‑driven Discord client
|
||
|
||
/*
|
||
Gaming
|
||
*/
|
||
lutris.enable = false; # Lutris: an open gaming platform
|
||
|
||
/*
|
||
Media recording and streaming
|
||
*/
|
||
obs-studio.enable = false; # OBS Studio: streaming and recording software
|
||
|
||
/*
|
||
Office suite
|
||
*/
|
||
onlyoffice.enable = false; # OnlyOffice: an office suite compatible with Microsoft formats
|
||
|
||
/*
|
||
Learning tools
|
||
*/
|
||
anki.enable = false; # Anki: spaced‑repetition flashcard program
|
||
|
||
/*
|
||
XDG desktop entries (PWA)
|
||
*/
|
||
xdgDesktopEntries = {
|
||
enable = false; # Enable XDG desktop entries
|
||
entries = {
|
||
messenger.enable = false; # Messenger: Facebook Messenger
|
||
mastodon.enable = false; # Mastodon: a decentralized social network
|
||
garandcloud.enable = false; # GarandCloud: my Nextcloud instance
|
||
chatgpt.enable = false; # ChatGPT: a large language model
|
||
claude.enable = false; # Claude: a large language model
|
||
glance.enable = false; # Glance: my home server dashboard
|
||
jellyfinClient.enable = false; # Jellyfin: My Jellyfin
|
||
};
|
||
};
|
||
|
||
/*
|
||
Noctalia-shell plugins
|
||
*/
|
||
nooctalia-plugins = {
|
||
mini-docker.enable = false; # Mini Docker: Manage Docker containers, images, volumes & networks
|
||
timer.enable = false; # Timer: A timer and stopwatch plugin for the bar & control center.
|
||
keybind-cheatsheet.enable = false; # Keybind Cheatsheet: Universal keyboard shortcuts keymap that automatically detects and displays keybindings for Hyprland, Niri, or MangoWC compositors.
|
||
kde-connect.enable = false; # KDE Connect: A Plugin integrating your mobile devices into a panel using KDEConnect
|
||
screen-recorder.enable = false; # Screen Recorder: Hardware-accelerated screen recording using gpu-screen-recorder with customizable video and audio settings
|
||
screenshot.enable = false; # Screenshot: Quick screenshot button in bar for Hyprland, Sway, and Niri
|
||
ntfy-notifications.enable = false; # ntfy Notifications: Subscribe to ntfy topics and receive push notifications directly in your bar, with full theming support
|
||
};
|
||
}
|