proper zsh

This commit is contained in:
Mohamed Chrayed 2024-08-06 17:57:40 +02:00
parent c20be9d3f0
commit a57f7959bf
4 changed files with 7 additions and 8 deletions

View File

@ -5,6 +5,7 @@
./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,6 +0,0 @@
{ ... }
{
programs.zsh {
enable = true;
};
}

View File

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

4
user/usr-shell.nix Normal file
View File

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