Add basic ZSH config

This commit is contained in:
2025-02-27 17:39:57 +01:00
parent f3d3383173
commit d310ab19d3
3 changed files with 13 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
./IDEs
./git
./zsh
];
nixpkgs = {

View File

@@ -0,0 +1,5 @@
{ ... }:
{
imports = [ ./zsh.nix ];
}

7
home-manager/zsh/zsh.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, inputs, ... }:
{
programs.zsh = {
enable = true;
};
}