From 35c77911a3eee2ecf95002cfc6c09b1ac8939470 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:01 +1000 Subject: [PATCH] darwin: merge hosts/darwin-common into modules/darwin/nix --- flake.nix | 1 - hosts/darwin-common.nix | 5 ----- modules/darwin/nix.nix | 3 +++ 3 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 hosts/darwin-common.nix diff --git a/flake.nix b/flake.nix index 3f1167d..a4b21f9 100644 --- a/flake.nix +++ b/flake.nix @@ -50,7 +50,6 @@ ./modules/darwin/nix.nix ./hosts/faye/conf.nix - ./hosts/darwin-common.nix ]; }; }; diff --git a/hosts/darwin-common.nix b/hosts/darwin-common.nix deleted file mode 100644 index a8fd76b..0000000 --- a/hosts/darwin-common.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - system.stateVersion = 5; -} diff --git a/modules/darwin/nix.nix b/modules/darwin/nix.nix index 0182024..89aa2d3 100644 --- a/modules/darwin/nix.nix +++ b/modules/darwin/nix.nix @@ -31,4 +31,7 @@ ${pkgs.mkalias}/bin/mkalias "$src" "/Applications/Nix Apps/$app_name" done ''; + + # changing this might break + system.stateVersion = 5; }