mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-22 12:55:13 +08:00
fix: set display spanning to false because otherwise yabai doesn't work; homebrew changes
This commit is contained in:
parent
69cf748a63
commit
4d552e4005
1 changed files with 10 additions and 6 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
# ./../../modules/core/homebrew.nix
|
# ./../../modules/core/homebrew.nix
|
||||||
./../../modules/core/user.nix
|
./../../modules/core/user.nix
|
||||||
./../../modules/core/skhd.nix
|
# ./../../modules/core/skhd.nix
|
||||||
./../../modules/core/yabai.nix
|
./../../modules/core/yabai.nix
|
||||||
#./../../modules/core/virtualization.nix
|
#./../../modules/core/virtualization.nix
|
||||||
#./../../modules/services/tailscale.nix
|
#./../../modules/services/tailscale.nix
|
||||||
|
|
@ -35,17 +35,18 @@
|
||||||
iCal."first day of week" = "Monday";
|
iCal."first day of week" = "Monday";
|
||||||
screencapture.include-date = true;
|
screencapture.include-date = true;
|
||||||
screencapture.type = "png";
|
screencapture.type = "png";
|
||||||
spaces.spans-displays = true;
|
spaces.spans-displays = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||||
|
|
||||||
homebrew = {
|
homebrew = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#taps = {
|
taps = [
|
||||||
# "homebrew/homebrew-core" = inputs.homebrew-core;
|
"homebrew/homebrew-core"
|
||||||
# "homebrew/homebrew-cask" = inputs.homebrew-cask;
|
"homebrew/homebrew-cask"
|
||||||
#};
|
# "FelixKratz/formulae"
|
||||||
|
];
|
||||||
onActivation = {
|
onActivation = {
|
||||||
autoUpdate = true;
|
autoUpdate = true;
|
||||||
cleanup = "uninstall";
|
cleanup = "uninstall";
|
||||||
|
|
@ -58,6 +59,7 @@
|
||||||
brews = [
|
brews = [
|
||||||
"imagemagick"
|
"imagemagick"
|
||||||
"virt-manager"
|
"virt-manager"
|
||||||
|
# "svim"
|
||||||
];
|
];
|
||||||
casks = [
|
casks = [
|
||||||
"qbittorrent"
|
"qbittorrent"
|
||||||
|
|
@ -81,6 +83,8 @@
|
||||||
"mullvad-vpn"
|
"mullvad-vpn"
|
||||||
"maccy"
|
"maccy"
|
||||||
"spotmenu"
|
"spotmenu"
|
||||||
|
# "svim"
|
||||||
|
# "font-sketchybar-app-font"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue