diff options
author | Vincent Ambo <mail@tazj.in> | 2024-09-13T09·25+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-09-13T09·48+0000 |
commit | 773ddcb20999a8a8b062b74fc13b846647044b8f (patch) | |
tree | a5d8213db5a2ee9dacc6fbb9ee98d2abb47694e1 /users | |
parent | 485fb81edf46cc03a3a4be475cdf3fd9836dbc90 (diff) |
feat(tazjin/nixos): install radicle-node on all machines r/8670
Change-Id: I67ce259d890bd508cd9c9516702d51d5e70f4065 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12470 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/nixos/koptevo/default.nix | 9 | ||||
-rw-r--r-- | users/tazjin/nixos/modules/physical.nix | 1 |
2 files changed, 6 insertions, 4 deletions
diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix index ea8dfd4bd809..8ccd8dae249d 100644 --- a/users/tazjin/nixos/koptevo/default.nix +++ b/users/tazjin/nixos/koptevo/default.nix @@ -62,7 +62,7 @@ in domain = "tazj.in"; useDHCP = true; firewall.enable = true; - firewall.allowedTCPPorts = [ 22 80 443 ]; + firewall.allowedTCPPorts = [ 22 80 443 8776 ]; wireless.enable = true; wireless.networks."How do I computer fast?" = { @@ -169,13 +169,14 @@ in # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ + bat curl + emacs-nox htop jq - nmap - bat - emacs-nox nano + nmap + radicle-node wget ]; diff --git a/users/tazjin/nixos/modules/physical.nix b/users/tazjin/nixos/modules/physical.nix index f04cd6675fad..569230633455 100644 --- a/users/tazjin/nixos/modules/physical.nix +++ b/users/tazjin/nixos/modules/physical.nix @@ -75,6 +75,7 @@ in pulseaudio # for pactl pwgen quasselClient + radicle-node rink ripgrep rustup |