From 25e4a54ee2deae4003dd8023fa65272ed17c93ea Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 14 Jul 2025 00:35:31 +0200 Subject: [PATCH] Fix ambiguous unicode characters --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 60cc76d..b3a842f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -66,11 +66,11 @@ # Enable touchpad support (enabled default in most desktopManager). services.libinput.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. + # Define a user account. Don't forget to set a password with 'passwd'. users.users.ekzyis = { isNormalUser = true; home = "/home/ekzyis"; - extraGroups = [ "wheel" "networkmanager" "docker" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "wheel" "networkmanager" "docker" ]; # Enable 'sudo' for the user. packages = with pkgs; [ ]; };