From e91383e2b08835448ec353f7cda4a7ebbba7479b Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 22 Jun 2024 11:48:42 -0400 Subject: [PATCH] fix(system): fix funky unicode quotes --- system/host/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/host/configuration.nix b/system/host/configuration.nix index 78ad617..ea0d816 100644 --- a/system/host/configuration.nix +++ b/system/host/configuration.nix @@ -22,7 +22,7 @@ in # To see all available timezones, run `timedatectl list-timezones`. time.timeZone = "Europe/Amsterdam"; - # Define your user account(s). Don't forget to set a password with ‘passwd’. + # Define your user account(s). Don't forget to set a password with `passwd`. users.users.${username} = { isNormalUser = true; extraGroups = [ "wheel" ];