Files
nixos/system/packages.nix

87 lines
3.2 KiB
Nix
Raw Normal View History

2026-03-20 19:26:48 +00:00
{ pkgs, pkgs-unstable, nix-gaming, ... }:
2026-03-09 20:27:18 +00:00
{
2026-03-09 21:43:40 +00:00
nixpkgs.config.allowUnfree = true;
2026-03-09 20:27:18 +00:00
environment.systemPackages = with pkgs; [
2026-03-09 21:43:40 +00:00
# hyprland-preview-share-picker.packages.${system}.default # Hyprland share picker TODO: Figure out and configure
2026-03-09 20:27:18 +00:00
bat # Better cat
brightnessctl # Backlight control
btop # Resource monitor
cargo # Rust build tool
clippy # Rust linter
eza # Better ls
fcitx5 # Input method framework TODO: Figure out and configure
fzf # Fuzzy file finder
gcc # C compiler
git # Git
gnome-calculator # Calculator TODO: Find a better TUI calculator
2026-03-24 19:07:10 +00:00
gnome-keyring
2026-03-09 20:27:18 +00:00
grim # Screenshot tool TODO: Figure out and configure
gum # Terminal UI tool
highlight # Syntax highlighting tool TODO: Hook up to ZSH
2026-03-19 17:19:51 +00:00
hyprcursor # Hyprland cursor theme support
2026-03-09 20:27:18 +00:00
hypridle # Idle daemon for Hyprland
hyprlock # Screen locker for Hyprland
hyprpaper # Wallpaper utility for Hyprland TODO: Check if necessary with swaybg
hyprpicker # Hyprland colour picker
imagemagick # Image manipulation tool
impala # Wifi TUI
jq # CLI JSON processor
lazygit # Git TUI
less # Pager
libnotify # Notification daemon
makima # Key remapper for Linux TODO: Figure out and configure
mako # Notification daemon
neovim # Editor
2026-03-20 19:26:48 +00:00
nix-gaming.mo2installer
2026-03-09 21:43:40 +00:00
nodePackages.pnpm # JavaScript package manager (used by Neovim plugins)
nodejs_24 # JavaScript runtime
2026-03-09 20:27:18 +00:00
openssl # SSL/TLS toolkit
p7zip # 7-Zip archiver
2026-03-24 19:03:39 +00:00
pipewire
2026-03-09 20:27:18 +00:00
pkgs-unstable.yazi # Terminal file manager
pywal16 # Image colorscheme generator
qt6.qtwayland # qtwayland support
ripgrep # Better grep
rsync # Remote file sync
rustc # Rust compiler
rustfmt # Rust formatter
satty # Screenshot editor TODO: Figure out and configure
2026-03-27 09:31:53 +00:00
seahorse # GNOME Keyring manager
2026-03-15 17:04:38 +00:00
sshpass # SSH with password in CLI, used by install scripts
2026-03-27 13:42:29 +00:00
steamTinkerLaunch # Tools for Steam/Gaming
2026-03-09 20:27:18 +00:00
swaybg # Wayland wallpaper utility
tldr # Simplified man pages
tmux # Terminal multiplexer
tmuxinator # Tmux configurator
tree # Tree structure viewing Tool
unzip # Compressing tool
uwsm # Universal Wayland Session Manager
v4l-utils # Video4Linux utilities TODO: Figure out why I need this
waybar # Status bar for Hyprland
wget # Download tool
2026-03-20 19:18:45 +00:00
pkgs-unstable.wineWow64Packages.stable # Wine packages for 64-bit and 32-bit support
pkgs-unstable.winetricks # Windows compatibility tool
2026-03-09 20:27:18 +00:00
wl-clipboard # Wayland clipboard manager
wlogout # Wayland logout menu
xdg-terminal-exec # XDG terminal execution utility
2026-03-09 21:43:40 +00:00
yarn # JavaScript package manager
2026-03-09 20:27:18 +00:00
zip # Archiver tool
zoxide # Better cd
];
2026-03-09 21:43:40 +00:00
systemd = {
packages = with pkgs; [
uwsm
];
};
system = {
autoUpgrade = {
enable = true;
allowReboot = false;
runGarbageCollection = true;
};
};
2026-03-09 20:27:18 +00:00
}