2022-09-18 15:49:37 +00:00
|
|
|
{ config, pkgs, lib, ... }: {
|
|
|
|
|
|
|
|
nix = {
|
|
|
|
package = pkgs.nix;
|
|
|
|
extraOptions = ''
|
|
|
|
system = aarch64-darwin # M1 gang
|
|
|
|
extra-platforms = aarch64-darwin x86_64-darwin # But we use rosetta too
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
build-users-group = nixbld
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
fonts = {
|
2022-09-19 07:23:26 +00:00
|
|
|
fontDir.enable = false;
|
2022-09-18 15:49:37 +00:00
|
|
|
fonts = with pkgs; [
|
|
|
|
fira
|
|
|
|
fira-code
|
|
|
|
roboto
|
|
|
|
roboto-mono
|
2023-06-27 15:17:24 +00:00
|
|
|
source-sans
|
|
|
|
source-code-pro
|
|
|
|
source-serif
|
2022-09-18 15:49:37 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-09-20 19:14:28 +00:00
|
|
|
users.users."larstvei".home = "/Users/larstvei";
|
|
|
|
|
2022-09-18 15:49:37 +00:00
|
|
|
programs.fish.enable = true;
|
|
|
|
system.activationScripts.postActivation.text = ''
|
|
|
|
# Set the default shell as fish for the user. MacOS doesn't do this like nixOS does
|
|
|
|
sudo chsh -s ${lib.getBin pkgs.fish}/bin/fish larstvei
|
|
|
|
'';
|
|
|
|
|
|
|
|
networking.hostName = "macbookpro";
|
|
|
|
|
2022-09-19 14:54:39 +00:00
|
|
|
system = {
|
|
|
|
stateVersion = 4;
|
|
|
|
|
|
|
|
keyboard = {
|
|
|
|
enableKeyMapping = true;
|
|
|
|
remapCapsLockToControl = true;
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
2022-09-19 14:54:39 +00:00
|
|
|
defaults = {
|
|
|
|
screencapture = { location = "/tmp"; };
|
|
|
|
dock = {
|
|
|
|
autohide = true;
|
|
|
|
showhidden = true;
|
|
|
|
mru-spaces = false;
|
|
|
|
};
|
|
|
|
finder = {
|
|
|
|
AppleShowAllExtensions = true;
|
|
|
|
QuitMenuItem = true;
|
|
|
|
FXEnableExtensionChangeWarning = true;
|
|
|
|
};
|
2022-09-18 15:49:37 +00:00
|
|
|
|
2022-09-19 14:54:39 +00:00
|
|
|
NSGlobalDomain = {
|
|
|
|
AppleKeyboardUIMode = 3;
|
|
|
|
ApplePressAndHoldEnabled = false;
|
|
|
|
AppleFontSmoothing = 1;
|
|
|
|
_HIHideMenuBar = true;
|
|
|
|
InitialKeyRepeat = 15;
|
|
|
|
KeyRepeat = 1;
|
|
|
|
"com.apple.mouse.tapBehavior" = 1;
|
|
|
|
"com.apple.swipescrolldirection" = true;
|
|
|
|
};
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
homebrew = {
|
|
|
|
enable = true;
|
2023-02-19 19:09:59 +00:00
|
|
|
onActivation = {
|
|
|
|
upgrade = true;
|
|
|
|
cleanup = "uninstall";
|
|
|
|
};
|
2023-07-03 15:33:21 +00:00
|
|
|
taps = [ "homebrew/cask" "sourcegraph/src-cli" "homebrew/cask-versions" ];
|
2022-09-18 15:49:37 +00:00
|
|
|
casks = [
|
|
|
|
"amethyst"
|
2023-07-03 15:33:21 +00:00
|
|
|
"docker"
|
2022-12-21 17:49:44 +00:00
|
|
|
"dropbox"
|
2024-03-22 19:30:16 +00:00
|
|
|
# "expressvpn"
|
2023-07-03 15:33:21 +00:00
|
|
|
"firefox-developer-edition"
|
2022-09-19 14:51:34 +00:00
|
|
|
"google-chrome"
|
2022-12-23 17:04:41 +00:00
|
|
|
"iina"
|
2023-02-10 16:52:00 +00:00
|
|
|
"karabiner-elements"
|
2023-01-22 15:33:50 +00:00
|
|
|
"mactex"
|
2024-03-22 19:30:16 +00:00
|
|
|
"obs"
|
2023-01-30 22:34:25 +00:00
|
|
|
"orion"
|
2022-09-18 15:49:37 +00:00
|
|
|
"raycast"
|
2022-10-01 06:58:37 +00:00
|
|
|
"remarkable"
|
2023-02-18 19:44:39 +00:00
|
|
|
"signal"
|
2024-03-22 19:30:16 +00:00
|
|
|
"supercollider"
|
2023-04-30 12:16:08 +00:00
|
|
|
"zoom"
|
2022-09-18 15:49:37 +00:00
|
|
|
];
|
2023-07-03 15:33:21 +00:00
|
|
|
brews = [
|
|
|
|
{
|
|
|
|
name = "src-cli";
|
|
|
|
link = true;
|
|
|
|
}
|
|
|
|
];
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
|
|
|
}
|