aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix1
-rw-r--r--hosts/darwin/configuration.nix16
-rw-r--r--hosts/darwin/home.nix2
-rw-r--r--modules/zsh.nix2
4 files changed, 19 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 0369436..6ea350b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -60,6 +60,7 @@
home-manager.users.${username} = import ./hosts/darwin/home.nix;
home-manager.sharedModules = [
+ inputs.nixcord.homeModules.nixcord
inputs.mac-app-util.homeManagerModules.default
];
}
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix
index 573bacd..4167394 100644
--- a/hosts/darwin/configuration.nix
+++ b/hosts/darwin/configuration.nix
@@ -11,6 +11,10 @@
shell = pkgs.zsh;
};
+ system.defaults = {
+ dock.autohide = true;
+ };
+
programs.zsh.enable = true;
homebrew = {
@@ -24,7 +28,17 @@
"nextcloud"
"bambu-studio"
];
+ masApps = {
+ "Goodnotes 6" = 1444383602;
+ "WhatsApp Messenger " = 310633997;
+ "Adguard for Safari" = 1440147259;
+ "WireGuard" = 1451685025;
+ "Infuse" = 1136220934;
+ };
+ onActivation.cleanup = "zap";
+ onActivation.autoUpdate = true;
+ onActivation.upgrade = true;
};
system.stateVersion = 5;
-} \ No newline at end of file
+}
diff --git a/hosts/darwin/home.nix b/hosts/darwin/home.nix
index b2a0a32..8ec0c4d 100644
--- a/hosts/darwin/home.nix
+++ b/hosts/darwin/home.nix
@@ -13,6 +13,8 @@
htop
ffmpeg
pfetch
+ zoxide
+ mas
#dev
gcc
diff --git a/modules/zsh.nix b/modules/zsh.nix
index d252396..9389d51 100644
--- a/modules/zsh.nix
+++ b/modules/zsh.nix
@@ -18,6 +18,7 @@ in {
zstyle ':completion:*' special-dirs true
zstyle ':completion:*' squeeze-slashes true
zstyle ':completion:*' add-space false
+ eval "$(zoxide init zsh)"
'';
zplug = {
@@ -27,7 +28,6 @@ in {
{ name = "zpm-zsh/colorize"; }
{ name = "sindresorhus/pure"; tags = [ "as:theme" "use:pure.zsh" ]; }
{ name = "zdharma-continuum/fast-syntax-highlighting"; }
- { name = "agkozak/zsh-z"; }
{ name = "zsh-users/zsh-autosuggestions"; }
];
};