mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
Fixed a typo
This commit is contained in:
parent
bb7ed6ff05
commit
340db495d2
@ -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";
|
||||||
|
|||||||
@ -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;
|
||||||
|
|
||||||
|
|||||||
@ -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!";
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user