adjust lookingglass computer name

This commit is contained in:
Noah Masur 2024-12-16 14:08:29 -05:00
parent e6f5649999
commit 405b1ce60f
No known key found for this signature in database
2 changed files with 9 additions and 8 deletions

View File

@ -26,7 +26,7 @@ inputs.darwin.lib.darwinSystem {
inputs.mac-app-util.darwinModules.default inputs.mac-app-util.darwinModules.default
{ {
nixpkgs.overlays = [ inputs.firefox-darwin.overlay ] ++ overlays; nixpkgs.overlays = [ inputs.firefox-darwin.overlay ] ++ overlays;
networking.hostName = "lookingglass"; networking.computerName = "NYCM-NMASUR1";
identityFile = "/Users/Noah.Masur/.ssh/id_ed25519"; identityFile = "/Users/Noah.Masur/.ssh/id_ed25519";
gui.enable = true; gui.enable = true;
theme = { theme = {

View File

@ -6,11 +6,12 @@
}: }:
{ {
config = lib.mkIf pkgs.stdenv.isDarwin { # config = lib.mkIf pkgs.stdenv.isDarwin {
networking = { # networking = {
computerName = config.networking.hostName; # computerName = config.networking.hostName;
# Adjust if necessary # # Adjust if necessary
# hostName = ""; # # hostName = "";
}; # };
}; # };
# }
} }