This commit is contained in:
Ray Andrew 2025-04-08 22:53:50 -05:00
parent 873026fc91
commit 1cb11aef59
Signed by: rayandrew
SSH key fingerprint: SHA256:XYrYrxF0Z3A72n8P/p6mqPRNQZT22F88XcLsG+kX4xw
5 changed files with 53 additions and 9 deletions

View file

@ -68,6 +68,7 @@ in
# alt-enter = "exec-and-forget \"open -n -a /Applications/Slack.app\"";
alt-shift-f = "fullscreen";
alt-shift-q = "close --quit-if-last-window";
alt-space = "layout floating tiling";
alt-e = "layout tiles horizontal vertical";
alt-t = "layout h_accordion";

View file

@ -53,6 +53,10 @@
};
config = {
users.users.${user} = {
home = "/Users/${user}";
};
system.defaults = {
CustomUserPreferences = {
NSGlobalDomain = {
@ -106,7 +110,7 @@
mineffect = "scale";
minimize-to-application = true;
mru-spaces = false;
orientation = "left";
orientation = "bottom";
show-recents = false;
wvous-br-corner = 1; # Disabled
};
@ -152,6 +156,7 @@
environment.systemPackages =
with pkgs;
[
mas
vim
htop
]

View file

@ -23,6 +23,12 @@
firefox = mkEnableOption "Enable Firefox";
chromium = mkEnableOption "Enable Chromium";
aldente = mkEnableOption "Enable AlDente";
zotero = mkEnableOption "Enable Zotero";
amphetamine = mkEnableOption "Enable Amphetamine";
scroll-reverser = mkEnableOption "Enable Scroll Reverser";
ice = mkEnableOption "Enable Ice Menu Manager";
contexts = mkEnableOption "Enable Contexts";
forklift = mkEnableOption "Enable Forklift 4";
};
config = lib.mkMerge [
@ -49,6 +55,13 @@
};
};
}
# mas apps
(lib.mkIf config.custom.brew.amphetamine {
homebrew.masApps = {
"Amphetamine" = 937984704;
};
})
# casks
(lib.mkIf config.custom.brew.zen-browser {
homebrew.casks = [
"zen-browser"
@ -119,5 +132,30 @@
"aldente"
];
})
(lib.mkIf config.custom.brew.zotero {
homebrew.casks = [
"zotero"
];
})
(lib.mkIf config.custom.brew.scroll-reverser {
homebrew.casks = [
"scroll-reverser"
];
})
(lib.mkIf config.custom.brew.ice {
homebrew.casks = [
"jordanbaird-ice"
];
})
(lib.mkIf config.custom.brew.contexts {
homebrew.casks = [
"contexts"
];
})
(lib.mkIf config.custom.brew.forklift {
homebrew.casks = [
"forklift"
];
})
];
}

View file

@ -7,6 +7,7 @@
self,
user,
dots,
system,
...
}:
@ -86,6 +87,7 @@
# };
};
nixpkgs.hostPlatform = system;
# add nixos-option workaround for flakes
# https://github.com/NixOS/nixpkgs/issues/97855#issuecomment-1075818028
nixpkgs.overlays = [

View file

@ -11,14 +11,7 @@
...
}:
{
imports = [
];
nixpkgs.hostPlatform = system;
users.users.${user} = {
home = "/Users/${user}";
};
imports = [ ];
custom = {
aerospace.enable = true;
@ -39,6 +32,11 @@
firefox = true;
chromium = true;
aldente = true;
zotero = true;
amphetamine = true;
scroll-reverser = true;
ice = true;
contexts = true;
};
};