From 30682c4c430427bb42def8007f60c3c611e9f8e3 Mon Sep 17 00:00:00 2001 From: Louis Gallet Date: Sat, 30 Aug 2025 12:24:23 +0200 Subject: [PATCH] feat: add user info --- hosts/MBP-Louis.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/MBP-Louis.nix b/hosts/MBP-Louis.nix index d6c68ee..96fb964 100644 --- a/hosts/MBP-Louis.nix +++ b/hosts/MBP-Louis.nix @@ -1,6 +1,15 @@ { pkgs, ... }: { + { + # Définition de l'utilisateur + users.users.louisgallet = { + isNormalUser = true; + description = "Louis Gallet"; + home = "/Users/louisgallet"; + shell = pkgs.zsh; + }; + # Homebrew configuration homebrew = { enable = true;