[mac] Extract dock configuration to its own module.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
{ ... } : {
|
||||||
|
imports = [
|
||||||
|
./dock.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,8 +1,9 @@
|
|||||||
{ self, pkgs, config, ... }: {
|
{ self, pkgs, config, ... }: {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./hotkeys.nix
|
../common/darwin
|
||||||
../../modules/common
|
../../modules/common
|
||||||
|
./hotkeys.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# To reflect hotkeys without a login cycle.
|
# To reflect hotkeys without a login cycle.
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
{ self, pkgs, config, ... }: {
|
{ self, pkgs, config, ... }: {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./hotkeys.nix
|
../common/darwin
|
||||||
../../modules/common
|
../../modules/common
|
||||||
|
./hotkeys.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# To reflect hotkeys without a login cycle.
|
# To reflect hotkeys without a login cycle.
|
||||||
|
|||||||
Reference in New Issue
Block a user