feat(darwin)!: update config
Add `nix` initialization script to shell's `extraConfig` - fixes `nix` when updating MacOS Add `flameshot` to `brew` packages Fix tilde (`~`) remapping - mysteriously switched after a restart, needed to swap Add (noncompiling) `borders` (`JankyBorders`) config Add `TODO` to `sketchybar` config
This commit is contained in:
parent
4a12826d66
commit
ff04252a67
6 changed files with 45 additions and 1 deletions
26
modules/nix-darwin/yabai/borders/default.nix
Executable file
26
modules/nix-darwin/yabai/borders/default.nix
Executable file
|
@ -0,0 +1,26 @@
|
|||
{ lib, fetchFromGitHub, darwin, ... }:
|
||||
|
||||
# TODO: fix clang issue (works with native `/usr/bin/clang`)
|
||||
#
|
||||
# > Undefined symbols for architecture arm64:
|
||||
# > "_SLSWindowManagementBridgeSetDelegate", referenced from:
|
||||
# > _main in main.o
|
||||
# > ld: symbol(s) not found for architecture arm64
|
||||
|
||||
darwin.apple_sdk.stdenv.mkDerivation rec {
|
||||
pname = "JankyBorders";
|
||||
version = "dev";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FelixKratz";
|
||||
repo = "JankyBorders";
|
||||
rev = "6bc201813bc163c6f5a20d5fa744f7b0d1f31773";
|
||||
sha256 = "sha256-b4+aJkP1yqz8x5EUDDVQmqrmLus+Y69RViAeaLvfGXE=";
|
||||
};
|
||||
|
||||
buildInputs = with darwin.apple_sdk.frameworks; [
|
||||
AppKit
|
||||
SkyLight
|
||||
darwin.apple_sdk.Libsystem
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue