mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 02:39:27 -05:00
73 lines
963 B
Nix
73 lines
963 B
Nix
{pkgs}: {
|
|
# Regular packages
|
|
systemPackages = with pkgs; [
|
|
# Base system tools
|
|
git
|
|
vim
|
|
libnotify
|
|
pavucontrol
|
|
brightnessctl
|
|
ffmpeg
|
|
nautilus
|
|
hyprshot
|
|
hyprpicker
|
|
alejandra
|
|
pamixer
|
|
playerctl
|
|
bibata-cursors
|
|
gnome-themes-extra
|
|
blueberry
|
|
|
|
# Shell tools
|
|
fzf
|
|
zoxide
|
|
ripgrep
|
|
eza
|
|
fd
|
|
curl
|
|
unzip
|
|
wget
|
|
gnumake
|
|
|
|
# TUIs
|
|
lazygit
|
|
lazydocker
|
|
btop
|
|
powertop
|
|
fastfetch
|
|
|
|
# GUIs
|
|
chromium
|
|
obsidian
|
|
vlc
|
|
|
|
# Can't find this in nixpkgs!
|
|
# Might have to make it ourselves
|
|
# asdcontrol
|
|
|
|
# Don't want these right now
|
|
# obs-studio
|
|
# kdePackages.kdenLive
|
|
# pinta
|
|
# libreoffice
|
|
# signal_desktop
|
|
|
|
# Commercial GUIs
|
|
typora
|
|
dropbox
|
|
spotify
|
|
# zoom
|
|
|
|
# Development tools
|
|
github-desktop
|
|
gh
|
|
|
|
# Containers
|
|
docker-compose
|
|
podman-compose
|
|
];
|
|
|
|
homePackages = with pkgs; [
|
|
];
|
|
}
|