From a9cc298c944cbc68e0462201643d79958794f128 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:00 +1000 Subject: [PATCH] darwin: state config version --- flake.nix | 1 + hosts/darwin-common.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 hosts/darwin-common.nix diff --git a/flake.nix b/flake.nix index b663ad5..ca76888 100644 --- a/flake.nix +++ b/flake.nix @@ -51,6 +51,7 @@ ./modules/darwin/nix.nix ./hosts/faye/conf.nix + ./hosts/darwin-common.nix ]; }; }; diff --git a/hosts/darwin-common.nix b/hosts/darwin-common.nix new file mode 100644 index 0000000..a8fd76b --- /dev/null +++ b/hosts/darwin-common.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + system.stateVersion = 5; +}