diff options
author | Franck Cuny <franck@fcuny.net> | 2024-10-26 08:41:00 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-10-26 08:41:00 -0700 |
commit | feea0771dd6747428c1b5c8b091552a1cd95477f (patch) | |
tree | 660950ddb1e5a028db008b44df45b3581b0bf24f /nix/hosts/mba | |
parent | automatically install updates for MacOS (diff) | |
download | world-feea0771dd6747428c1b5c8b091552a1cd95477f.tar.gz |
configure the host's name for the MBA
Diffstat (limited to 'nix/hosts/mba')
-rw-r--r-- | nix/hosts/mba/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/nix/hosts/mba/default.nix b/nix/hosts/mba/default.nix index ad91147..8beef56 100644 --- a/nix/hosts/mba/default.nix +++ b/nix/hosts/mba/default.nix @@ -1,5 +1,4 @@ -{ pkgs, self, ... }: -{ +{ pkgs, self, ... }: { services.nix-daemon.enable = true; programs.fish.enable = true; @@ -14,5 +13,8 @@ system.stateVersion = 5; - home-manager.users.fcuny = import "${self}/nix/profiles/home-manager/personal.nix"; + networking.hostName = "mba-fcuny"; + + home-manager.users.fcuny = + import "${self}/nix/profiles/home-manager/personal.nix"; } |