Fixed a typo

This commit is contained in:
Alexandre1a 2026-01-01 20:08:48 +01:00
parent bb7ed6ff05
commit 340db495d2
No known key found for this signature in database
GPG Key ID: CE01C28FBC5EEF10
3 changed files with 28 additions and 24 deletions

View File

@ -10,7 +10,8 @@
]; ];
# All System packages # All System packages
environment.systemPackages = with pkgs; environment = {
systemPackages = with pkgs;
[ [
# Basic text editing for all users # Basic text editing for all users
neovim neovim
@ -29,8 +30,9 @@
netcat netcat
tmux tmux
#telnet #telnet
]; ];
pathsToLink = [ "/share/zsh" ];
};
# Create the user # Create the user
users.users.alex = { users.users.alex = {
description = "Alexandre Delcamp--Enache"; description = "Alexandre Delcamp--Enache";

View File

@ -79,8 +79,10 @@
programs.hyprland.enable = true; programs.hyprland.enable = true;
# Hint Electron Apps to use Wayland # Hint Electron Apps to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment = {
sessionVariables.NIXOS_OZONE_WL = "1";
pathsToLink = [ "/share/zsh" ];
};
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View File

@ -4,7 +4,7 @@
programs.zsh = { programs.zsh = {
enable = true; enable = true;
package = pkgs.zsh; package = pkgs.zsh;
enableCompletions = true; enableCompletion = true;
autocd = true; autocd = true;
loginExtra = "echo Hello World!"; loginExtra = "echo Hello World!";