mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
fix: typo for config and temporarily disable dependencies
This commit is contained in:
parent
99de0d4f2a
commit
006eaf33be
10 changed files with 471 additions and 50 deletions
|
|
@ -6,9 +6,19 @@
|
|||
accordion-padding = 10;
|
||||
default-root-container-layout = "tiles";
|
||||
default-root-container-orientation = "auto";
|
||||
on-focus-monitor-changed = ["move-mouse monitor-lazy-center"];
|
||||
on-focus-monitor-changed = [ "move-mouse monitor-lazy-center" ];
|
||||
automatically-unhide-macos-hidden-apps = false;
|
||||
persistent-workspaces = ["1" "2" "3" "4" "5" "6" "7" "8" "9"];
|
||||
persistent-workspaces = [
|
||||
"1"
|
||||
"2"
|
||||
"3"
|
||||
"4"
|
||||
"5"
|
||||
"6"
|
||||
"7"
|
||||
"8"
|
||||
"9"
|
||||
];
|
||||
|
||||
keymapping = {
|
||||
preset = "qwerty";
|
||||
|
|
@ -67,15 +77,39 @@
|
|||
};
|
||||
|
||||
mode.service.binding = {
|
||||
esc = ["reload-config" "mode main"];
|
||||
r = ["flatten-workspace-tree" "mode main"];
|
||||
f = ["layout floating tiling" "mode main"];
|
||||
backspace = ["close-all-windows-but-current" "mode main"];
|
||||
esc = [
|
||||
"reload-config"
|
||||
"mode main"
|
||||
];
|
||||
r = [
|
||||
"flatten-workspace-tree"
|
||||
"mode main"
|
||||
];
|
||||
f = [
|
||||
"layout floating tiling"
|
||||
"mode main"
|
||||
];
|
||||
backspace = [
|
||||
"close-all-windows-but-current"
|
||||
"mode main"
|
||||
];
|
||||
|
||||
alt-shift-h = ["join-with left" "mode main"];
|
||||
alt-shift-j = ["join-with down" "mode main"];
|
||||
alt-shift-k = ["join-with up" "mode main"];
|
||||
alt-shift-l = ["join-with right" "mode main"];
|
||||
alt-shift-h = [
|
||||
"join-with left"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-j = [
|
||||
"join-with down"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-k = [
|
||||
"join-with up"
|
||||
"mode main"
|
||||
];
|
||||
alt-shift-l = [
|
||||
"join-with right"
|
||||
"mode main"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
./jq.nix
|
||||
./lazygit.nix
|
||||
./mise.nix
|
||||
./ghostty.nix
|
||||
# ./ghostty.nix # FIXME: ghostty home-manager program not available in aarch64-darwin
|
||||
./bat.nix
|
||||
./aerospace.nix
|
||||
# TODO ./pass.nix
|
||||
|
|
@ -31,14 +31,15 @@
|
|||
# packages that are not available via programs
|
||||
packages = with pkgs; [
|
||||
# nix-search-tv
|
||||
(writeShellApplication {
|
||||
name = "ns";
|
||||
runtimeInputs = with pkgs; [
|
||||
fzf
|
||||
nix-search-tv
|
||||
];
|
||||
text = builtins.readFile "${pkgs.nix-search-tv.src}/nixpkgs.sh";
|
||||
})
|
||||
# FIXME: NIX_SHELL_CMD='nix-shell --run $SHELL -p $(echo "{}" | sed "s:nixpkgs/::g"' ^-- SC2016 (info): Expressions don't expand in single quotes, use double quotes for that.
|
||||
# (writeShellApplication {
|
||||
# name = "ns";
|
||||
# runtimeInputs = with pkgs; [
|
||||
# fzf
|
||||
# nix-search-tv
|
||||
# ];
|
||||
# text = builtins.readFile "${pkgs.nix-search-tv.src}/nixpkgs.sh";
|
||||
# })
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
color = "auto";
|
||||
colors = "auto";
|
||||
git = true;
|
||||
icons = "auto";
|
||||
enableZshIntegration = true;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
progrmas.mise = {
|
||||
programs.mise = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableBashIntegration = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue