-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarwin.nix
41 lines (38 loc) · 857 Bytes
/
darwin.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This is a poor man's `nix-darwin`.
# Install with `nix profile install github:philiptaron/flock.nix#vesper`
# You might need to clear out all other installed items.
{ pkgs, symlinkJoin }:
symlinkJoin {
name = "darwin";
paths = with pkgs; [
bash-completion
bashInteractive
bat
cacert
fd
findutils
gh
git
gping
h
jq
# Remove the annoying message of command-line line 0: Unsupported option "gssapiauthentication"
# and forward the SSH agent into the guest.
(lima.overrideAttrs (prevAttrs: {
patches = (prevAttrs.patches or [ ]) ++ [ patches/lima/ssh.patch ];
}))
man
nix-output-monitor
nix-update
nixfmt-rfc-style
nixpkgs-review
nixVersions.nix_2_26
openssh
powerline-go
pstree
ripgrep
tailscale
uutils-coreutils-noprefix
vim
];
}