4e28ca9b48
- Removed USBGuard configuration and its associated comments from configuration.nix. - Cleaned up flake.nix by removing unnecessary overlays. - Updated home.nix to remove references to Helium and Proton, and added Steam. - Deleted secrets.default.nix and secrets.secrets.yaml files for security reasons. - Removed Omen laptop specific configuration from omen.nix. - Deleted vencord.nix as it is no longer needed.
61 lines
1.8 KiB
Nix
61 lines
1.8 KiB
Nix
{
|
|
pkgs,
|
|
pkgs-stable,
|
|
pkgs-nur-hadi,
|
|
...
|
|
}: {
|
|
home.packages = (with pkgs-stable; [
|
|
|
|
vlc # Video player
|
|
obsidian # Note taking app
|
|
|
|
ticktick # Todo app
|
|
onlyoffice-desktopeditors # Office suite
|
|
librewolf # Backup browser
|
|
|
|
# I love TUIs
|
|
caligula # User-friendly, lightweight TUI for disk imaging (ISO, USB BOOT)
|
|
browsh # A modern text-based browser that renders anything that a modern browser can. It runs in a terminal and can be used remotely over SSH
|
|
dysk # A terminal-based disk usage analyzer
|
|
wikiman # Offline search engine for manual pages (arch wiki, tldr)
|
|
tealdeer # Fast tldr client
|
|
sttr # Minimalist "cyberchef" like. Cross-platform, cli app to perform various operations on string
|
|
wiremix # Simple TUI mixer for PipeWire
|
|
|
|
pom # Pomodoro timer in your terminal
|
|
pkgs.wifitui # TUI for managing wifi
|
|
pkgs-nur-hadi.usbguard-tui # TUI for managing USBGuard rules
|
|
|
|
|
|
# I love CLIs
|
|
httpie # Command-line HTTP client, a user-friendly cURL replacement
|
|
pastel # Command-line tool to generate, analyze, convert and manipulate colors
|
|
imagemagick # Image manipulation tool
|
|
chafa # Image to ANSI/Unicode converter and more.
|
|
|
|
/*
|
|
Disabled
|
|
resources # Ressource monitor
|
|
|
|
textpieces # Manipulate texts
|
|
gnome-clocks # Clocks app
|
|
gnome-text-editor # Basic graphic text editor
|
|
pinta # Image editor
|
|
switcheroo # Convert images between different formats
|
|
signal-desktop # Messaging app
|
|
|
|
blanket # Listen to different sounds
|
|
gh # GitHub
|
|
gh-dash # A terminal dashboard for GitHub
|
|
figlet # Transform text into ASCII art
|
|
pkgs-nur-hadi.sheets # Terminal based spreadsheet tool
|
|
slides # A terminal-based presentation tool that allows you to create and deliver presentations directly from the command line
|
|
*/
|
|
|
|
])
|
|
|
|
++ (with pkgs; [
|
|
vencord # Vencord Discord Mod
|
|
]);
|
|
}
|