forked from malob/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.nix
70 lines (56 loc) · 1.72 KB
/
bootstrap.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{ config, lib, pkgs, ... }:
{
nix.settings = {
substituters = [
"https://cache.nixos.org/"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
trusted-users = [ "@admin" ];
auto-optimise-store = false;
experimental-features = [
"nix-command"
"flakes"
];
extra-platforms = lib.mkIf (pkgs.system == "aarch64-darwin") [ "x86_64-darwin" "aarch64-darwin" ];
};
# https://github.com/LnL7/nix-darwin/issues/970
# nix.configureBuildUsers = true;
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
# Add shells installed by nix to /etc/shells file
environment.shells = with pkgs; [
bashInteractive
fish
zsh
];
# Make Fish the default shell
programs.fish.enable = true;
programs.fish.useBabelfish = true;
programs.fish.babelfishPackage = pkgs.babelfish;
# Lunarvim installs its binary at ~/.local/bin
environment.systemPath = [
"/Users/pritamkadam/.local/bin"
(/Users/pritamkadam/Library + "/Application Support/Coursier/bin")
];
# Needed to address bug where $PATH is not properly set for fish:
# https://github.com/LnL7/nix-darwin/issues/122
programs.fish.shellInit = ''
for p in (string split : ${config.environment.systemPath})
if not contains $p $fish_user_paths
set -g fish_user_paths $fish_user_paths "$p"
end
end
'';
programs.tmux = {
enable = true;
enableFzf = true;
enableMouse = true;
enableVim = true;
};
environment.variables.SHELL = "${pkgs.fish}/bin/fish";
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
}