Skip to content

Commit

Permalink
update deps, remove tor/whois
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Nov 28, 2023
1 parent 0180da0 commit 742d113
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 25 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 16 additions & 11 deletions nix/darwin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ let
mode = config.igm.mode;
in
with lib; {
environment.systemPackages = with pkgs; [ vim tor ];
environment.systemPackages = with pkgs; [
vim
# Tor install is currently broken 2023-11-28
# tor
];

home-manager.users.igm = homeBase;
home-manager.useGlobalPkgs = true;
Expand Down Expand Up @@ -54,14 +58,15 @@ with lib; {
home = "/Users/igm";
};

launchd.user.agents.tor = {
command = with pkgs; "${tor}/bin/tor";
serviceConfig = {
KeepAlive = true;
RunAtLoad = true;
ProcessType = "Background";
StandardOutPath = "/var/tmp/tor.log";
StandardErrorPath = "/var/tmp/tor.error.log";
};
};
# Tor broken 2023-11-28
# launchd.user.agents.tor = {
# command = with pkgs; "${tor}/bin/tor";
# serviceConfig = {
# KeepAlive = true;
# RunAtLoad = true;
# ProcessType = "Background";
# StandardOutPath = "/var/tmp/tor.log";
# StandardErrorPath = "/var/tmp/tor.error.log";
# };
# };
}
18 changes: 9 additions & 9 deletions nix/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/home/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
tmux
unzip
wget
whois
# whois

# nix language server
rnix-lsp
Expand Down
2 changes: 1 addition & 1 deletion scripts/cachix-push-m1-config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env -S bash -xe

cachix-build-and-push nix/#darwinConfigurations.ci-personal-m1.system
cachix-build-and-push "$HOME/dotfiles/nix/#darwinConfigurations.ci-personal-m1.system"

0 comments on commit 742d113

Please sign in to comment.