mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
98 lines
1.2 KiB
Nix
98 lines
1.2 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
self,
|
|
config,
|
|
...
|
|
}: {
|
|
|
|
nixpkgs.config.allowUnfree = false;
|
|
home.packages = with pkgs; [
|
|
# system
|
|
wget
|
|
unzip
|
|
neovim
|
|
python3
|
|
dconf
|
|
libnotify
|
|
i3lock-fancy-rapid
|
|
pkg-config
|
|
alsa-utils
|
|
nslookup
|
|
nmap
|
|
traceroute
|
|
|
|
# cli
|
|
zellij
|
|
fd
|
|
glow
|
|
trash-cli
|
|
thefuck
|
|
xclip
|
|
fend
|
|
broot
|
|
unar
|
|
bottom
|
|
rsync
|
|
dua
|
|
|
|
# gui
|
|
feh
|
|
rofi
|
|
dunst
|
|
yq
|
|
imagemagick
|
|
ungoogled-chromium
|
|
librewolf
|
|
mullvad-browser
|
|
tor-browser-bundle-bin
|
|
gimp
|
|
logseq
|
|
zotero
|
|
armcord
|
|
freetube
|
|
texstudio
|
|
texlive.combined.scheme-full
|
|
mpv
|
|
inkscape
|
|
dolphin
|
|
qgis
|
|
obs-studio
|
|
mumble
|
|
onionshare-gui
|
|
freetube
|
|
kotatogram-desktop
|
|
signal-desktop
|
|
qbittorrent
|
|
thunderbird
|
|
|
|
# dev
|
|
psmisc
|
|
qmk
|
|
python311Packages.pip
|
|
cmake
|
|
texlab
|
|
|
|
# gaming
|
|
gamemode
|
|
gamehub
|
|
lutris
|
|
prismlauncher
|
|
airshipper
|
|
bottles
|
|
minigalaxy
|
|
cemu
|
|
mindustry
|
|
|
|
# media
|
|
ffmpeg
|
|
pulseaudio
|
|
playerctl
|
|
pavucontrol
|
|
pulsemixer
|
|
pamixer
|
|
alsa-utils
|
|
alsa-tools
|
|
cava
|
|
];
|
|
}
|