depot/ops/nixos/lib/client.nix

22 lines
379 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ pkgs, depot, lib, ... }:
let
inherit (lib) mkBefore;
in
{
nix.gc.automatic = false;
users.users.lukegb.packages = mkBefore (with pkgs; [
depot.nix.pkgs.copybara
direnv
git
go
graphicsmagick-imagemagick-compat
ripgrep
whois
]);
}