Skip to content

Commit

Permalink
add android
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Jul 30, 2024
1 parent a3bc5b8 commit 165ee04
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions config/vscode/extensions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ denoland.vscode-deno
eamodio.gitlens
editorconfig.editorconfig
esbenp.prettier-vscode
expo.vscode-expo-tools
figma.figma-vscode-extension
foxundermoon.shell-format
gaborv.flatbuffers
Expand Down
1 change: 1 addition & 0 deletions nix/darwin/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ with lib; rec {
];

casks = [
"android-studio"
"anki"
"arc"
"brave-browser"
Expand Down
16 changes: 9 additions & 7 deletions nix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,15 @@
})
(import ./system.nix { isDarwin = true; })
home-manager.darwinModules.home-manager
] ++ modules ++ [{
networking = {
inherit computerName hostName;
localHostName = hostName;
};
services.nix-daemon.enable = true;
}];
] ++ modules ++ [
{
networking = {
inherit computerName hostName;
localHostName = hostName;
};
services.nix-daemon.enable = true;
}
];
};
in
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/igm-switch
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "Synchronizing settings"
igm-sync

SHOW_TRACE=''
if [ ${1:none} = '--debug' ]; then
if [ "${1:none}" = '--debug' ]; then
SHOW_TRACE='--show-trace'
fi

Expand Down

0 comments on commit 165ee04

Please sign in to comment.