this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Nix now enables git-send-email on all platforms

+10 -10
+4 -1
nix/.config/nixpkgs/config.nix
··· 1 - { allowUnsupportedSystem = true; } 1 + { 2 + allowUnsupportedSystem = true; 3 + allowBroken = true; 4 + }
+6 -9
nix/.config/nixpkgs/darwin/configuration.nix
··· 1 1 { config, pkgs, ... }: 2 2 3 - let 4 - gitFuller = pkgs.gitAndTools.gitFull.override { sendEmailSupport = true; }; 5 - in 6 3 { 7 4 system.defaults.dock.autohide = true; 8 5 ··· 26 23 gitAndTools.git-test 27 24 gitAndTools.hub 28 25 gitAndTools.tig 29 - gitFuller 26 + gitFull 30 27 gnupg 31 28 httpie 32 29 imagemagick 33 30 jq 31 + lnav 34 32 neovim 35 33 neovim-remote 36 34 noti 35 + pinentry_mac 37 36 ripgrep 38 37 universal-ctags 39 38 w3m ··· 69 68 environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix"; 70 69 71 70 # Auto upgrade nix package and the daemon service. 72 - services.nix-daemon.enable = true; 71 + services.nix-daemon.enable = false; 73 72 services.nix-daemon.enableSocketListener = true; 74 73 75 74 # Set .localhost. TLD on loopback address ··· 91 90 92 91 nix.package = pkgs.nixStable; 93 92 # nix.useSandbox = true; 94 - # nix.sandboxPaths = [ "/System/Library/Frameworks" "/System/Library/PrivateFrameworks" "/usr/lib" "/private/tmp" "/private/var/tmp" "/usr/bin/env" ]; 93 + nix.sandboxPaths = [ "/System/Library/Frameworks" "/System/Library/PrivateFrameworks" "/usr/lib" "/private/tmp" "/private/var/tmp" "/usr/bin/env" ]; 95 94 96 95 nixpkgs.config.allowUnfree = true; 97 96 98 97 programs.gnupg.agent.enable = false; 99 98 programs.gnupg.agent.enableSSHSupport = true; 100 99 101 - # programs.nix-index.enable = true; 102 - 103 100 programs.fish.enable = true; 104 101 105 102 # Used for backwards compatibility, please read the changelog before changing. 106 103 # $ darwin-rebuild changelog 107 - system.stateVersion = 3; 104 + system.stateVersion = 4; 108 105 109 106 # You should generally set this to the total number of logical cores in your system. 110 107 # $ sysctl -n hw.ncpu