Skip to content

Commit

Permalink
mac-mini
Browse files Browse the repository at this point in the history
  • Loading branch information
ironicbadger committed Dec 21, 2024
1 parent 04ffc86 commit 42e0e54
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
slartibartfast = libx.mkDarwin { hostname = "slartibartfast"; };
nauvis = libx.mkDarwin { hostname = "nauvis"; };
mac-studio = libx.mkDarwin { hostname = "mac-studio"; };
mac-mini = libx.mkDarwin { hostname = "mac-mini"; };
mooncake = libx.mkDarwin { hostname = "mooncake"; };

# work
Expand All @@ -65,7 +66,6 @@

# wd
morphnix = import ./hosts/nixos/morphnix;
nix-app = import ./hosts/nixos/nix-app;
nix-nvllama = import ./hosts/nixos/nix-nvllama;
#desktop = import ./hosts/nixos/desktop;

Expand Down
9 changes: 9 additions & 0 deletions hosts/darwin/mac-mini/custom-dock.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ config, ... }:
{
system.defaults.dock = {
persistent-apps = [
"/Applications/Google Chrome.app"
"/Applications/Ghostty.app"
];
};
}
6 changes: 6 additions & 0 deletions hosts/darwin/mac-mini/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./custom-dock.nix
];
}

0 comments on commit 42e0e54

Please sign in to comment.