Skip to content

Latest commit

 

History

History
executable file
·
33 lines (29 loc) · 777 Bytes

packages.md

File metadata and controls

executable file
·
33 lines (29 loc) · 777 Bytes

User packages

{ config, pkgs, lib, modules, ... }:
{
  imports = [
    /${modules}/home/xdg.nix
    /${modules}/home/packages/developing/dotnet.nix
    /${modules}/home/packages/developing/rider.nix
    /${modules}/home/packages/developing/node.nix
  ];

  home.packages = with pkgs; let
    openvpn_legacy = openvpn.override { openssl = openssl_legacy; };
  in
  [
    #<<<PereWork/home/packages-packages>>>
    keepassxc
    appimage-run
    openvpn
    (writeScriptBin "openvpn_legacy" ''${openvpn_legacy}/bin/openvpn "$@"'')
    openconnect gp-saml-gui
    remmina
    postgresql # TODO install only client
    unfree.dropbox-cli # TODO with home manager
    unfree.postman
    unfree.ngrok
  ];

  #<<<PereWork/home/packages>>>
}