mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
73 lines
1.1 KiB
Nix
73 lines
1.1 KiB
Nix
{ pkgs, ... }: {
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# Packages in each category are sorted alphabetically
|
|
|
|
# Desktop apps
|
|
alacritty
|
|
blueman
|
|
chromium
|
|
fuzzel
|
|
imv
|
|
mpv
|
|
obs-studio
|
|
obsidian
|
|
teams-for-linux
|
|
telegram-desktop
|
|
vesktop
|
|
|
|
# CLI utils
|
|
bottom
|
|
brightnessctl
|
|
cliphist
|
|
ffmpeg
|
|
git
|
|
grimblast
|
|
htop
|
|
lazygit
|
|
lf
|
|
microfetch
|
|
neovim
|
|
playerctl
|
|
ripgrep
|
|
silicon
|
|
starship
|
|
swww
|
|
tmux
|
|
tree
|
|
unzip
|
|
vim
|
|
wget
|
|
wl-clipboard
|
|
yt-dlp
|
|
zip
|
|
|
|
# Coding stuff
|
|
nodejs
|
|
python311
|
|
|
|
# WM stuff
|
|
hyprpicker
|
|
libsForQt5.xwaylandvideobridge
|
|
libnotify
|
|
waybar
|
|
xdg-desktop-portal-gtk
|
|
xdg-desktop-portal-hyprland
|
|
|
|
# Other
|
|
home-manager
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
jetbrains-mono
|
|
noto-fonts
|
|
noto-fonts-emoji
|
|
twemoji-color-font
|
|
font-awesome
|
|
powerline-fonts
|
|
powerline-symbols
|
|
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
|
|
];
|
|
}
|