blob: 514cef2f3d7199aa85e39df99fa546badb4f1b5e (
plain)
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
|
{ config, pkgs, lib, ... }:
{
nix = {
settings.trusted-users = [
"@admin"
];
settings.auto-optimise-store = lib.mkDefault true;
configureBuildUsers = true;
gc.automatic = lib.mkDefault true;
gc.options = lib.mkDefault "--delete-older-than 10d";
extraOptions = ''
experimental-features = nix-command flakes
extra-platforms = x86_64-darwin aarch64-darwin
'';
};
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[
pkgs.vim
];
# Use a custom configuration.nix location.
# $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
# environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
# nix.package = pkgs.nix;
users.users.sefidel = {
name = "sefidel";
home = "/Users/sefidel";
};
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true; # default shell on catalina
# programs.fish.enable = true;
# Make applications pop up in finder/spotlight
system.activationScripts.applications.text = pkgs.lib.mkForce (
''
echo "setting up ~/Applications..." >&2
rm -rf ~/Applications/Nix\ Apps
mkdir -p ~/Applications/Nix\ Apps
for app in $(find ${config.system.build.applications}/Applications -maxdepth 1 -type l); do
src="$(/usr/bin/stat -f%Y "$app")"
cp -r "$src" ~/Applications/Nix\ Apps
done
''
);
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
}
|