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;