diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-08 13:58:02 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-08 15:35:17 -0800 |
commit | 52ac07299f2342afe0c309f3b8be3ea05c7549ff (patch) | |
tree | bad76e67ba8a1f9301eb87a8c5e66c8a5a260e76 /nix/machines/macbook-air-m2.nix | |
parent | add targets to create virtual machines (diff) | |
download | world-52ac07299f2342afe0c309f3b8be3ea05c7549ff.tar.gz |
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.
Diffstat (limited to '')
-rw-r--r-- | nix/machines/macbook-air-m2.nix | 13 |
1 files changed, 13 insertions, 0 deletions
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" ]; +} |