Compare commits
2 Commits
1ba39a8930
...
0e7f6d0383
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 0e7f6d0383 | |
Nathan McCarty | a147887a24 |
|
@ -89,7 +89,7 @@ in {
|
||||||
upgrade = true;
|
upgrade = true;
|
||||||
cleanup = "zap";
|
cleanup = "zap";
|
||||||
};
|
};
|
||||||
taps = [ "homebrew/cask-versions" ];
|
taps = [ "homebrew/cask-versions" "homebrew/services" ];
|
||||||
casks = lib.mkMerge [
|
casks = lib.mkMerge [
|
||||||
(lib.mkIf config.nathan.programs.firefox [{ name = "firefox"; }])
|
(lib.mkIf config.nathan.programs.firefox [{ name = "firefox"; }])
|
||||||
(lib.mkIf config.nathan.programs.virtualization [{ name = "utm"; }])
|
(lib.mkIf config.nathan.programs.virtualization [{ name = "utm"; }])
|
||||||
|
@ -108,6 +108,7 @@ in {
|
||||||
{ name = "iterm2"; }
|
{ name = "iterm2"; }
|
||||||
{ name = "gpg-suite"; }
|
{ name = "gpg-suite"; }
|
||||||
{ name = "amethyst"; }
|
{ name = "amethyst"; }
|
||||||
|
{ name = "podman-desktop"; }
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
brews = lib.mkMerge [
|
brews = lib.mkMerge [
|
||||||
|
@ -116,6 +117,8 @@ in {
|
||||||
restart_service = true;
|
restart_service = true;
|
||||||
start_service = true;
|
start_service = true;
|
||||||
}])
|
}])
|
||||||
|
# Unconditionally install core utilities
|
||||||
|
[{ name = "podman"; }]
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,6 +21,7 @@ in with lib; {
|
||||||
AppleInterfaceStyle = "Dark";
|
AppleInterfaceStyle = "Dark";
|
||||||
# Disable "natural" scrolling
|
# Disable "natural" scrolling
|
||||||
"com.apple.swipescrolldirection" = false;
|
"com.apple.swipescrolldirection" = false;
|
||||||
|
"_HIHideMenuBar" = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue