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
environment.systemPackages = with pkgs;
[
# Basic text editing for all users
neovim
vim
# General tools
btop
eza
fastfetch
ffmpeg
fzf
git
git-lfs
gnupg
wget
tree
netcat
tmux
#telnet
];
environment = {
systemPackages = with pkgs;
[
# Basic text editing for all users
neovim
vim
# General tools
btop
eza
fastfetch
ffmpeg
fzf
git
git-lfs
gnupg
wget
tree
netcat
tmux
#telnet
];
pathsToLink = [ "/share/zsh" ];
};
# Create the user
users.users.alex = {
description = "Alexandre Delcamp--Enache";

View File

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

View File

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