From 3d1018dcc32d1508cde7558dfad0a3ab74e07b3a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Feb 2026 21:00:58 +0000 Subject: [PATCH] Clarify password hash docs Co-authored-by: ragusa-it <196988693+ragusa-it@users.noreply.github.com> --- README.md | 2 +- modules/common.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a6ae97..7eac3a9 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Defaults are set in `flake.nix` and used across modules. Update them there: | `time.timeZone` | `America/New_York` | `modules/common.nix` | | `i18n.defaultLocale` | `en_US.UTF-8` | `modules/common.nix` | -Rename the default `hosts/atlas/` directory to match your hostname (e.g., `hosts/desktop/`). After renaming the directory, update the `hostname` value in `flake.nix` to match. The flake uses it to locate `hosts//hardware-configuration.nix`. +Update the `hostname` value in `flake.nix` to match your machine. Then rename the default `hosts/atlas/` directory to the same value (e.g., `hosts/desktop/`). The flake uses it to locate `hosts//hardware-configuration.nix`. ### 3. Stage Files in Git diff --git a/modules/common.nix b/modules/common.nix index ec6f24e..ac3b882 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -117,7 +117,7 @@ isNormalUser = true; extraGroups = [ "wheel" "networkmanager" "video" "seat" ]; # IMPORTANT: Generate a password hash with: mkpasswd -m sha-512 - # Save it to the path below (ensure permissions are 600) + # Save it to the path defined in flake.nix (ensure permissions are 600) hashedPasswordFile = passwordHashPath; packages = with pkgs; [ # -- Noctalia Shell --