Merge branch 'main' of github.com:nmarks413/nix-config
This commit is contained in:
commit
ce509e6860
3 changed files with 22 additions and 6 deletions
|
@ -104,10 +104,6 @@
|
||||||
{nixpkgs.overlays = overlays;}
|
{nixpkgs.overlays = overlays;}
|
||||||
./hosts/laptop/configuration.nix
|
./hosts/laptop/configuration.nix
|
||||||
home-manager.darwinModules.home-manager
|
home-manager.darwinModules.home-manager
|
||||||
hosts.nixosModule
|
|
||||||
{
|
|
||||||
networking.stevenBlackHosts.enable = true;
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
|
|
|
@ -71,7 +71,7 @@
|
||||||
# minimal dock
|
# minimal dock
|
||||||
dock = {
|
dock = {
|
||||||
autohide = false;
|
autohide = false;
|
||||||
show-process-indicators = false;
|
show-process-indicators = true;
|
||||||
show-recents = true;
|
show-recents = true;
|
||||||
static-only = true;
|
static-only = true;
|
||||||
};
|
};
|
||||||
|
@ -81,6 +81,25 @@
|
||||||
ShowPathbar = true;
|
ShowPathbar = true;
|
||||||
FXEnableExtensionChangeWarning = false;
|
FXEnableExtensionChangeWarning = false;
|
||||||
};
|
};
|
||||||
# Tab between form controls and F-row that behaves as F1-F12
|
|
||||||
|
CustomUserPreferences = {
|
||||||
|
launchd.user.agents.UserKeyMapping.serviceConfig = {
|
||||||
|
ProgramArguments = [
|
||||||
|
"/usr/bin/hidutil"
|
||||||
|
"property"
|
||||||
|
"--match"
|
||||||
|
"{"ProductID":0x0,"VendorID":0x0,"Product":"Apple Internal Keyboard / Trackpad"}"
|
||||||
|
"--set"
|
||||||
|
(
|
||||||
|
let
|
||||||
|
# https://developer.apple.com/library/archive/technotes/tn2450/_index.html
|
||||||
|
caps_lock = "0x700000039";
|
||||||
|
escape = "0x700000029";
|
||||||
|
in "{"UserKeyMapping":[{"HIDKeyboardModifierMappingDst":${escape},"HIDKeyboardModifierMappingSrc":${caps_lock}},{"HIDKeyboardModifierMappingDst":${caps_lock},"HIDKeyboardModifierMappingSrc":${escape}}]}"
|
||||||
|
)
|
||||||
|
];
|
||||||
|
RunAtLoad = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
# environment.
|
# environment.
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
# ghostty.packages.aarch64-darwin.default
|
||||||
pyright
|
pyright
|
||||||
ruff
|
ruff
|
||||||
python312Packages.jedi-language-server
|
python312Packages.jedi-language-server
|
||||||
|
|
Loading…
Reference in a new issue