From 17e2cfba02405c16b59bf8df689b8c212ff381d8 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 26 Oct 2023 22:02:37 +0200 Subject: [PATCH] remove ambiguous unicode chars --- nixos/configuration.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 20c09c3..d007ae5 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -1,6 +1,6 @@ # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). +# and in the NixOS manual (accessible by running `nixos-help`). { config, pkgs, lib, inputs, ... }: @@ -61,7 +61,6 @@ in boot.plymouth.enable = true; networking.hostName = "thinknix"; - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # configure console console = { @@ -167,7 +166,7 @@ in services.flatpak.enable = true; xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-kde ]; - # 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.spiollinux = { isNormalUser = true; uid = 1000;