Skip to content

Commit

Permalink
Rename: "tentacool" -> "homelab"
Browse files Browse the repository at this point in the history
  • Loading branch information
samhh committed Jul 28, 2024
1 parent 31dc457 commit ea4d570
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
pkgs-unstable-ci = import nixpkgs-unstable { system = system-ci; };
in
{
nixosConfigurations.tentacool = nixpkgs.lib.nixosSystem rec {
nixosConfigurations.homelab = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
modules = [
Expand Down
6 changes: 3 additions & 3 deletions home/cli.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ pkgs, ... }:

let
blocky-tentacool = pkgs.writeShellScriptBin "blocky" ''
exec ${pkgs.blocky}/bin/blocky --apiHost tentacool "$@"
blocky-homelab = pkgs.writeShellScriptBin "blocky" ''
exec ${pkgs.blocky}/bin/blocky --apiHost homelab "$@"
'';
in
{
Expand All @@ -18,7 +18,7 @@ in

home.packages = with pkgs; [
ast-grep
blocky-tentacool
blocky-homelab
fd
gdu
glow
Expand Down
2 changes: 1 addition & 1 deletion homelab/network.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
networking = {
hostName = "tentacool";
hostName = "homelab";
interfaces.eno1.ipv6.addresses = [
{
address = "fd1d:8607:ebdd:b24b::1";
Expand Down
4 changes: 2 additions & 2 deletions homelab/svc/blocky.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ in

# Point to the router for local hostname resolution...
clientLookup.upstream = router;
# ...as well as for non-FQDN hostnames e.g. `tentacool` (else Blocky sees
# `tentacool.localdomain`). This is also necessary for UniFi adoption.
# ...as well as for non-FQDN hostnames e.g. `homelab` (else Blocky sees
# `homelab.localdomain`). This is also necessary for UniFi adoption.
conditional.mapping."." = router;

blocking = {
Expand Down

0 comments on commit ea4d570

Please sign in to comment.