forked from nico/dots
darwin: merge application configuration from application.nix into desktop.nix
makes darwin/applications useful for when programs differ between mac and linux
This commit is contained in:
parent
d5f3167d99
commit
6fad159c38
4 changed files with 51 additions and 48 deletions
|
|
@ -47,7 +47,6 @@
|
||||||
./modules/darwin/desktop.nix
|
./modules/darwin/desktop.nix
|
||||||
./modules/darwin/hardware.nix
|
./modules/darwin/hardware.nix
|
||||||
./modules/darwin/nix.nix
|
./modules/darwin/nix.nix
|
||||||
./modules/darwin/brew.nix
|
|
||||||
|
|
||||||
./hosts/faye/conf.nix
|
./hosts/faye/conf.nix
|
||||||
./hosts/darwin-common.nix
|
./hosts/darwin-common.nix
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,6 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
# dock
|
# dock
|
||||||
system.defaults.dock.autohide = true;
|
|
||||||
system.defaults.dock.autohide-delay = 0.01;
|
|
||||||
system.defaults.dock.autohide-time-modifier = 0.2;
|
|
||||||
system.defaults.dock.mineffect = "scale";
|
|
||||||
system.defaults.dock.orientation = "left";
|
|
||||||
system.defaults.dock.show-recents = true;
|
|
||||||
system.defaults.dock.tilesize = 48;
|
|
||||||
system.defaults.dock.persistent-apps = [
|
system.defaults.dock.persistent-apps = [
|
||||||
"/Applications/Firefox.app"
|
"/Applications/Firefox.app"
|
||||||
"/Applications/Ghostty.app"
|
"/Applications/Ghostty.app"
|
||||||
|
|
@ -22,33 +15,21 @@
|
||||||
"${pkgs.audacity}/Applications/Audacity.app"
|
"${pkgs.audacity}/Applications/Audacity.app"
|
||||||
"${pkgs.gimp}/Applications/GNU Image Manipulation Program.app"
|
"${pkgs.gimp}/Applications/GNU Image Manipulation Program.app"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# nix pkgs
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
]
|
||||||
|
|
||||||
# finder
|
# homebrew pkgs
|
||||||
system.defaults.finder = {
|
homebrew = {
|
||||||
AppleShowAllExtensions = true;
|
enable = true;
|
||||||
AppleShowAllFiles = true;
|
onActivation.cleanup = "zap";
|
||||||
FXEnableExtensionChangeWarning = false;
|
casks = [
|
||||||
FXPreferredViewStyle = "clmv";
|
"firefox"
|
||||||
FXRemoveOldTrashItems = true;
|
"thunderbird"
|
||||||
NewWindowTarget = "Home";
|
"ghostty"
|
||||||
ShowStatusBar = true;
|
"whisky"
|
||||||
_FXShowPosixPathInTitle = true;
|
];
|
||||||
_FXSortFoldersFirst = true;
|
|
||||||
|
|
||||||
CreateDesktop = true; # desktop icons
|
|
||||||
ShowHardDrivesOnDesktop = true;
|
|
||||||
ShowExternalHardDrivesOnDesktop = true;
|
|
||||||
ShowMountedServersOnDesktop = true;
|
|
||||||
ShowRemovableMediaOnDesktop = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# activity monitor
|
|
||||||
system.defaults.ActivityMonitor = {
|
|
||||||
IconType = 0;
|
|
||||||
OpenMainWindow = true;
|
|
||||||
ShowCategory = 100;
|
|
||||||
SortColumn = "CPUUsage";
|
|
||||||
SortDirection = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# hotkey daemon
|
# hotkey daemon
|
||||||
|
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
homebrew = {
|
|
||||||
enable = true;
|
|
||||||
onActivation.cleanup = "zap";
|
|
||||||
casks = [
|
|
||||||
"firefox"
|
|
||||||
"thunderbird"
|
|
||||||
"ghostty"
|
|
||||||
"whisky"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -43,4 +43,41 @@
|
||||||
system.defaults.dock.mru-spaces = false; # dont rearange spaces based on usage
|
system.defaults.dock.mru-spaces = false; # dont rearange spaces based on usage
|
||||||
system.defaults.spaces.spans-displays = true; # displays have different spaces
|
system.defaults.spaces.spans-displays = true; # displays have different spaces
|
||||||
system.defaults.NSGlobalDomain.AppleSpacesSwitchOnActivate = true;
|
system.defaults.NSGlobalDomain.AppleSpacesSwitchOnActivate = true;
|
||||||
|
|
||||||
|
# dock
|
||||||
|
system.defaults.dock.autohide = true;
|
||||||
|
system.defaults.dock.autohide-delay = 0.01;
|
||||||
|
system.defaults.dock.autohide-time-modifier = 0.2;
|
||||||
|
system.defaults.dock.mineffect = "scale";
|
||||||
|
system.defaults.dock.orientation = "left";
|
||||||
|
system.defaults.dock.show-recents = true;
|
||||||
|
system.defaults.dock.tilesize = 48;
|
||||||
|
|
||||||
|
# finder
|
||||||
|
system.defaults.finder = {
|
||||||
|
AppleShowAllExtensions = true;
|
||||||
|
AppleShowAllFiles = true;
|
||||||
|
FXEnableExtensionChangeWarning = false;
|
||||||
|
FXPreferredViewStyle = "clmv";
|
||||||
|
FXRemoveOldTrashItems = true;
|
||||||
|
NewWindowTarget = "Home";
|
||||||
|
ShowStatusBar = true;
|
||||||
|
_FXShowPosixPathInTitle = true;
|
||||||
|
_FXSortFoldersFirst = true;
|
||||||
|
|
||||||
|
CreateDesktop = true; # desktop icons
|
||||||
|
ShowHardDrivesOnDesktop = true;
|
||||||
|
ShowExternalHardDrivesOnDesktop = true;
|
||||||
|
ShowMountedServersOnDesktop = true;
|
||||||
|
ShowRemovableMediaOnDesktop = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# activity monitor
|
||||||
|
system.defaults.ActivityMonitor = {
|
||||||
|
IconType = 0;
|
||||||
|
OpenMainWindow = true;
|
||||||
|
ShowCategory = 100;
|
||||||
|
SortColumn = "CPUUsage";
|
||||||
|
SortDirection = 0;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue