start syncthing on load with launchd and improve dock/spaces defaults
This commit is contained in:
parent
cfeb53b1ed
commit
cbb40696de
1 changed files with 15 additions and 0 deletions
|
|
@ -51,6 +51,15 @@
|
||||||
''
|
''
|
||||||
);
|
);
|
||||||
|
|
||||||
|
launchd.user.agents.syncthing = {
|
||||||
|
path = [ pkgs.syncthing ];
|
||||||
|
command = "syncthing serve";
|
||||||
|
serviceConfig = {
|
||||||
|
ProcessType = "Background";
|
||||||
|
KeepAlive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
system.keyboard = {
|
system.keyboard = {
|
||||||
enableKeyMapping = true;
|
enableKeyMapping = true;
|
||||||
remapCapsLockToEscape = true;
|
remapCapsLockToEscape = true;
|
||||||
|
|
@ -58,6 +67,12 @@
|
||||||
|
|
||||||
system.defaults = {
|
system.defaults = {
|
||||||
finder.AppleShowAllExtensions = true;
|
finder.AppleShowAllExtensions = true;
|
||||||
|
|
||||||
|
dock = {
|
||||||
|
autohide = true;
|
||||||
|
mru-spaces = false;
|
||||||
|
showhidden = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Used for backwards compatibility, please read the changelog before changing.
|
# Used for backwards compatibility, please read the changelog before changing.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue