[mac] Extract dock configuration to its own module.

Signed-off-by: jmug <u.g.a.mariano@gmail.com>
This commit is contained in:
Mariano Uvalle 2025-08-07 17:15:14 -07:00
parent 79aefc3cee
commit e40afb9f8d
4 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,5 @@
{ ... } : {
imports = [
./dock.nix
];
}

View file

@ -0,0 +1,10 @@
{ ... } : {
system.defaults.dock = {
autohide = true;
mru-spaces = false; # Don't reorder spaces.
show-recents = false; # Don't keep recent app icons around.
magnification= true;
tilesize = 48;
largesize= 96;
};
}