nix-config/hosts/darwin-m1/configuration.nix

85 lines
1.7 KiB
Nix
Raw Normal View History

2024-10-06 19:53:29 +00:00
{ pkgs, lib, ... }:
{
2024-10-06 21:53:03 +00:00
fonts.packages = import ../../modules/fonts.nix { inherit pkgs; };
2022-09-20 19:14:28 +00:00
users.users."larstvei".home = "/Users/larstvei";
programs.fish.enable = true;
2024-10-05 23:03:31 +00:00
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
'';
2024-10-06 20:15:58 +00:00
networking.hostName = "larstvei-macbookpro";
2022-09-19 14:54:39 +00:00
system = {
stateVersion = 4;
keyboard = {
enableKeyMapping = true;
remapCapsLockToControl = true;
};
2022-09-19 14:54:39 +00:00
defaults = {
2024-10-06 19:53:29 +00:00
screencapture = {
location = "/tmp";
};
2022-09-19 14:54:39 +00:00
dock = {
autohide = true;
showhidden = true;
mru-spaces = false;
};
finder = {
AppleShowAllExtensions = true;
QuitMenuItem = true;
FXEnableExtensionChangeWarning = true;
};
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;
};
};
};
homebrew = {
enable = true;
onActivation = {
2024-07-03 14:03:08 +00:00
# autoUpdate = true;
upgrade = true;
cleanup = "uninstall";
};
2024-10-06 19:53:29 +00:00
taps = [
"homebrew/cask"
"homebrew/cask-versions"
];
casks = [
"amethyst"
2024-07-03 14:03:08 +00:00
"arc"
"chatgpt"
2023-07-03 15:33:21 +00:00
"docker"
2022-12-21 17:49:44 +00:00
"dropbox"
"google-chrome"
2022-12-23 17:04:41 +00:00
"iina"
2023-02-10 16:52:00 +00:00
"karabiner-elements"
2024-03-22 19:30:16 +00:00
"obs"
2024-07-03 14:03:08 +00:00
"ollama"
2024-08-31 10:09:08 +00:00
"processing"
"raycast"
"remarkable"
2023-02-18 19:44:39 +00:00
"signal"
2024-08-31 10:09:08 +00:00
"skim"
2024-03-22 19:30:16 +00:00
"supercollider"
2024-09-28 14:45:40 +00:00
"utm"
2023-04-30 12:16:08 +00:00
"zoom"
];
};
}