aboutsummaryrefslogtreecommitdiff
path: root/machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@roblox.com>2025-07-24 11:32:05 -0700
committerFranck Cuny <fcuny@roblox.com>2025-07-24 11:32:05 -0700
commit2cd936257549c49316f9025a121eedc5b3dd8b0a (patch)
tree6b3702111494f4743e99971611dff5ec2df6c6b7 /machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix
parentinstall gh only on work machine (diff)
downloadinfra-2cd936257549c49316f9025a121eedc5b3dd8b0a.tar.gz
fix configuration for work machine
The hostname is capitalized so let's also capitalize the filename! The overlays are not under `customPackages` anymore.
Diffstat (limited to 'machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix')
-rw-r--r--machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix57
1 files changed, 57 insertions, 0 deletions
diff --git a/machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix b/machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix
new file mode 100644
index 0000000..640ec4b
--- /dev/null
+++ b/machines/darwin/aarch64-darwin/HQ-KWNY2VH41P.nix
@@ -0,0 +1,57 @@
+{
+ adminUser,
+ pkgs,
+ self,
+ ...
+}:
+{
+
+ imports = [
+ "${self}/profiles/home-manager.nix"
+ "${self}/profiles/darwin.nix"
+ ];
+
+ system.primaryUser = adminUser.name;
+
+ fonts.packages = with pkgs; [
+ source-code-pro
+ ];
+
+ # The user should already exist, but we need to set this up so Nix knows
+ # what our home directory is (https://github.com/LnL7/nix-darwin/issues/423).
+ users = {
+ users.${adminUser.name} = {
+ home = "/Users/${adminUser.name}";
+ shell = pkgs.fish;
+ };
+ };
+
+ environment.shells = [ pkgs.fish ];
+
+ programs.fish.enable = true;
+ programs.fish.shellInit = ''
+ # Nix
+ if test -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish'
+ source '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish'
+ end
+ # End Nix
+ '';
+
+ programs.ssh.knownHosts = {
+ "github.com".publicKey =
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
+ };
+
+ home-manager.users.${adminUser.name} = {
+ home.stateVersion = "23.05";
+ home.username = "${adminUser.name}";
+ home.homeDirectory = "/Users/${adminUser.name}";
+ home.packages = with pkgs; [ grpcurl ];
+ imports = [
+ "${self}/users/profiles/mac.nix"
+ "${self}/users/profiles/work.nix"
+ ];
+ inherit (adminUser) userinfo;
+ programs.git.userEmail = "fcuny@roblox.com";
+ };
+}