From 52ac07299f2342afe0c309f3b8be3ea05c7549ff Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 8 Dec 2024 13:58:02 -0800 Subject: refactor overall configuration The configuration of the various hosts and home-manager was becoming a bit complex for no valid reasons. Try to simplify this a bit. --- nix/machines/macbook-air-m2.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nix/machines/macbook-air-m2.nix (limited to 'nix/machines/macbook-air-m2.nix') diff --git a/nix/machines/macbook-air-m2.nix b/nix/machines/macbook-air-m2.nix new file mode 100644 index 0000000..9b0265a --- /dev/null +++ b/nix/machines/macbook-air-m2.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: { + imports = [ ./darwin-shared.nix ]; + + system.stateVersion = 5; + + networking.hostName = "mba-fcuny"; + + programs.fish.enable = true; + environment.shells = [ pkgs.fish ]; + + # brew packages I only want to get installed on this machine + homebrew.casks = [ "zoom" ]; +} -- cgit 1.4.1