nix-home/darwin/configuration.nix

69 lines
1.8 KiB
Nix
Raw Normal View History

2021-12-08 19:21:58 +00:00
{ config, pkgs, lib, ... }:
2021-10-26 18:25:19 +00:00
{
2021-11-08 22:16:37 +00:00
imports = [
../modules/personal/fonts
./brew.nix
];
2021-10-26 18:25:19 +00:00
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
2021-10-26 19:10:10 +00:00
[ ];
2021-10-26 18:25:19 +00:00
# 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;
# Create /etc/bashrc that loads the nix-darwin environment.
2021-11-08 22:16:37 +00:00
programs.zsh.enable = true; # default shell on catalina
programs.fish.enable = true;
2021-10-26 18:25:19 +00:00
2021-10-26 19:10:10 +00:00
## Networking related settings
networking.hostName = "nki-macbook";
2021-12-08 18:06:03 +00:00
environment.variables = {
EDITOR = ""; # don't set it by default
2021-12-08 19:21:58 +00:00
# Homebrew stuff
# LLVM!
# To use the bundled libc++ please add the following LDFLAGS:
LDFLAGS = lib.concatStringsSep " " [
"-L/opt/homebrew/opt/llvm/lib"
"-Wl,-rpath,/opt/homebrew/opt/llvm/lib"
"-L/opt/homebrew/opt/llvm/lib"
"$LDFLAGS"
];
CPPFLAGS = "-I/opt/homebrew/opt/llvm/include $CPPFLAGS";
2021-12-08 18:06:03 +00:00
};
2021-12-08 19:21:58 +00:00
environment.systemPath = lib.mkBefore [
# Missing from MacOS
"/usr/local/bin"
# LaTeX
"/usr/local/texlive/2021/bin/universal-darwin"
# Go
"/usr/local/go/bin"
# Ruby
"/opt/homebrew/opt/ruby@2.7/bin"
# .NET
"/usr/local/share/dotnet"
# LLVM!
"/opt/homebrew/opt/llvm/bin"
];
2021-10-26 18:25:19 +00:00
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
2021-11-08 21:21:27 +00:00
# Font configuration
2021-10-26 18:25:19 +00:00
users.users.nki = {
name = "nki";
home = "/Users/nki";
2021-12-08 22:04:22 +00:00
shell = "${config.home-manager.users.nki.programs.fish.package}/bin/fish";
2021-10-26 18:25:19 +00:00
};
}