Shayne's Budget Packages

 avatar
unknown
nix
3 days ago
385 B
15
Indexable
{ pkgs, unstablePkgs }:

let
  stable = with pkgs; [
    git
    neovim
    wget
    iperf
    firefox
    fastfetch
    android-tools
    unzip
    remmina
  ];

  unstable = with unstablePkgs; [
    equibop
    hyprpaper
    wlroots
    wofi
    alacritty
    waybar
  ];
in
{
  inherit stable unstable;

  # Convenience: merge both for systemPackages
  all = stable ++ unstable;
}

Editor is loading...
Leave a Comment