diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/darwin/configuration.nix | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix index b25fb18..19ef571 100644 --- a/hosts/darwin/configuration.nix +++ b/hosts/darwin/configuration.nix @@ -5,14 +5,19 @@ nixpkgs.hostPlatform = "aarch64-darwin"; nixpkgs.config.allowUnfree = true; - users.users.schererleander = { - home = "/Users/schererleander"; - shell = pkgs.zsh; - }; - + users.users.schererleander.home = "/Users/schererleander"; + system.primaryUser = "schererleander"; system.defaults = { dock.autohide = true; + WindowManager.EnableStandardClickToShowDesktop = false; + finder = { + ShowPathbar = true; + ShowStatusBar = true; + _FXShowPosixPathInTitle = true; + _FXSortFoldersFirst = true; + }; + loginwindow.GuestEnabled = false; }; programs.zsh.enable = true; |
