proper systemwide zsh

This commit is contained in:
Mohamed Chrayed 2024-08-06 18:14:34 +02:00
parent a57f7959bf
commit 9e86775aae
5 changed files with 4 additions and 5 deletions

View File

@ -16,6 +16,7 @@
./system/set-boot.nix
./system/set-controller.nix
./system/set-desktop.nix
./system/set-dev.nix
./system/set-hardware-configuration.nix
./system/set-hardware.nix
./system/set-locale.nix

View File

@ -5,7 +5,6 @@
./user/usr-config.nix
./user/usr-customization.nix
./user/usr-plasma.nix
./user/usr-shell.nix
];
home.stateVersion = "24.05";
programs.home-manager.enable = true;

View File

@ -1,5 +1,7 @@
{ pkgs, pkgs-stable, ... }:
{
programs.zsh.enable = true;
environment.systemPackages =
(with pkgs; [
git

View File

@ -1,4 +1,5 @@
{ pkgs, ... }
:{
users.defaultUserShell = pkgs.zsh;
programs.zsh.enableCompletion = true;
}

View File

@ -1,4 +0,0 @@
{ home-manager, ... }
:{
programs.zsh.enable = true;
}