mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Fixed a typo
This commit is contained in:
parent
bb7ed6ff05
commit
340db495d2
@ -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";
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
package = pkgs.zsh;
|
||||
enableCompletions = true;
|
||||
enableCompletion = true;
|
||||
autocd = true;
|
||||
loginExtra = "echo Hello World!";
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user