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