dotfiles/modules/stable.nix

10 lines
251 B
Nix

## Pulls packages specifically from stable repo, rather than the default unstable.
{ inputs, config, pkgs, ... }:
{
environment.systemPackages = with inputs.nixpkgs-stable.legacyPackages.${pkgs.system}; [
vesktop
mullvad
tagutil
];
}