1753134851

This commit is contained in:
2025-07-21 15:54:11 -06:00
parent 26ee089653
commit 59a40f35a0

View File

@@ -1,54 +1,65 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let
unstablePkgs = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {
config = {
allowUnfree = true;
};
};
in
{ {
# Allow unfree packages # Allow unfree packages for the default (stable) nixpkgs.
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# System packages # System packages
environment.systemPackages = with pkgs; [ environment.systemPackages =
# Browsers and communication # Packages from the stable channel (pkgs)
ungoogled-chromium with pkgs; [
librewolf # Browsers and communication
discord ungoogled-chromium
signal-desktop-bin librewolf
impression discord
signal-desktop-bin
impression
# Development tools # Development tools (moving vscodium to unstable)
vscodium git
git go
go cargo
cargo rustc
rustc rust-analyzer
rust-analyzer rustfmt
rustfmt nodejs_24
nodejs_24 python3Full
python3Full openssh
openssh nodePackages."pnpm"
nodePackages."pnpm" openssl
openssl ffmpeg
ffmpeg vscodium
# Desktop applications # Desktop applications
alacritty bitwarden-desktop
bitwarden-desktop vlc
vlc streamrip
onlyoffice-desktopeditors supersonic
gnome-notes nextcloud-client
streamrip zotero
supersonic prismlauncher
nextcloud-client lrcget
zotero
prismlauncher
lrcget
# Gaming # Gaming
luanti luanti
duckstation duckstation
dolphin-emu dolphin-emu
ryubing ryubing
gpu-screen-recorder gpu-screen-recorder
# GNOME extensions # GNOME extensions
gnomeExtensions.appindicator gnomeExtensions.appindicator
]; ]
# Packages from the unstable channel (unstablePkgs)
++ (with unstablePkgs; [
onlyoffice-desktopeditors
]);
} }