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,27 +10,29 @@
]; ];
# All System packages # All System packages
environment.systemPackages = with pkgs; environment = {
[ systemPackages = with pkgs;
# Basic text editing for all users [
neovim # Basic text editing for all users
vim neovim
# General tools vim
btop # General tools
eza btop
fastfetch eza
ffmpeg fastfetch
fzf ffmpeg
git fzf
git-lfs git
gnupg git-lfs
wget gnupg
tree wget
netcat tree
tmux netcat
#telnet tmux
#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!";