Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan McCarty 0e7f6d0383
Use podman on mac 2023-07-21 17:54:28 -04:00
Nathan McCarty a147887a24
Don't autohide menubar 2023-07-21 17:54:12 -04:00
2 changed files with 5 additions and 1 deletions

View File

@ -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"; }]
]; ];
}; };
}; };

View File

@ -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;
}; };
}; };
}; };