From 40394e17ee95b4ebec0f5a629111a3a6f98b8a6d Mon Sep 17 00:00:00 2001 From: Louis Gallet Date: Sat, 30 Aug 2025 12:20:29 +0200 Subject: [PATCH] fix: try to adapt homemanager --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 440256a..47e7b50 100644 --- a/flake.nix +++ b/flake.nix @@ -12,11 +12,18 @@ outputs = inputs@{ self, nixpkgs, nix-darwin, nix-homebrew, home-manager, ... }: let - # Imports communs aux deux machines + # Modules communs aux deux machines commonModules = [ ./modules/apps.nix ./modules/config.nix ./modules/dotfiles/git.nix + + # Ajout du bloc home-manager commun + ({ pkgs, ... }: { + home-manager.users.louisgallet = { + home.stateVersion = "24.05"; + }; + }) ]; in { darwinConfigurations."MBP-Louis" = nix-darwin.lib.darwinSystem {