about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@roblox.com>2024-12-09 08:43:53 -0800
committerFranck Cuny <fcuny@roblox.com>2024-12-09 08:43:53 -0800
commit260b79025f6c06e2b183f923c31bd0e6e83db254 (patch)
tree78d3cf7730132deb4c1b8f2d267c419597c97a50
parentmove each machine into a directory (diff)
downloadworld-260b79025f6c06e2b183f923c31bd0e6e83db254.tar.gz
fix configuration for work MBP
Diffstat (limited to '')
-rw-r--r--flake.nix20
1 files changed, 6 insertions, 14 deletions
diff --git a/flake.nix b/flake.nix
index 15cbde8..90a217f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,14 +30,7 @@
 
   # Output config, or config for NixOS system
   outputs =
-    { self
-    , nixpkgs
-    , darwin
-    , flake-utils
-    , pre-commit-hooks
-    , devshell
-    , ...
-    }@inputs:
+    { nixpkgs, darwin, flake-utils, pre-commit-hooks, devshell, ... }@inputs:
     flake-utils.lib.eachDefaultSystem
       (system:
       let
@@ -99,11 +92,10 @@
       };
 
       # my work MacBook Pro
-      darwinConfigurations.macbook-pro-intel =
-        mkSystem "macbook-pro-intel" {
-          system = "x86_64-darwin";
-          user = "fcuny";
-          darwin = true;
-        };
+      darwinConfigurations.hq-c02fk3q7md6t = mkSystem "hq-c02fk3q7md6t" {
+        system = "x86_64-darwin";
+        user = "fcuny";
+        darwin = true;
+      };
     }));
 }