Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

feat(njord): update macos config

cosmeak d4eaf496 da23108a

+21 -1
+21 -1
hosts/njord/configuration.nix
··· 67 67 AppleInterfaceStyleSwitchesAutomatically = true; 68 68 # Disable saving new documents to icloud 69 69 NSDocumentSaveNewDocumentsToCloud = false; 70 + # Time before the key is repeated 71 + InitialKeyRepeat = 1; 72 + # Time between repeat key 73 + KeyRepeat = 1; 74 + # Window open animation 75 + NSAutomaticWindowAnimationsEnabled = false; 76 + # Icon size in finder 77 + NSTableViewDefaultSizeMode = 1; 78 + # Drag from anywhere a window to move it 79 + NSWindowShouldDragOnGesture = true; 80 + # Deativate sound bip when volume is changed 81 + "com.apple.sound.beep.feedback" = false; 82 + # Natural scrolling direction 83 + "com.apple.swipescrolldirection" = true; 70 84 }; 85 + 86 + # Deactivate state manager 87 + WindowManager.GloballyEnabled = false; 88 + 89 + # Text show in the login window 90 + loginwindow.LoginwindowText = "Maybe you cannot touch me"; 71 91 }; 72 92 73 93 # List packages installed in system profile. To search by name, run: ··· 94 114 raycast 95 115 ]; 96 116 97 - # Homebrew - Using only for gui app because macos app do not existe un nixpkgs repository 117 + # Homebrew - Using for gui app because majority macos apps does not exists in nixpkgs repository 98 118 homebrew.enable = true; 99 119 homebrew.onActivation = { 100 120 autoUpdate = true;