diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-09 08:28:01 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-09 08:28:01 -0800 |
commit | 0998d8294e21cd8bdc6ac94525df0aae51bb4b0d (patch) | |
tree | 06c34041e7fb2f474e046dbb5deec3f23f82f0af /nix/machines/mba-m2 | |
parent | set hostname and correct ssh key (diff) | |
download | world-0998d8294e21cd8bdc6ac94525df0aae51bb4b0d.tar.gz |
move each machine into a directory
it will be easier to break down some configs.
Diffstat (limited to '')
-rw-r--r-- | nix/machines/mba-m2/default.nix (renamed from nix/machines/macbook-air-m2.nix) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/machines/macbook-air-m2.nix b/nix/machines/mba-m2/default.nix index 9b0265a..72a4e8b 100644 --- a/nix/machines/macbook-air-m2.nix +++ b/nix/machines/mba-m2/default.nix @@ -1,9 +1,9 @@ { pkgs, ... }: { - imports = [ ./darwin-shared.nix ]; + imports = [ ../darwin-shared.nix ]; system.stateVersion = 5; - networking.hostName = "mba-fcuny"; + networking.hostName = "mba-m2"; programs.fish.enable = true; environment.shells = [ pkgs.fish ]; |