Added a first draft at ZSH
All checks were successful
Check config / build (push) Successful in 9m49s
All checks were successful
Check config / build (push) Successful in 9m49s
This commit is contained in:
parent
c43507365a
commit
0a46026cea
13
modules_dentritic/features/core/shell.nix
Normal file
13
modules_dentritic/features/core/shell.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ self, inputs, ... }: {
|
||||
flake = {
|
||||
homeModules.shell = { pkgs, lib, ... }: {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
package = pkgs.zsh;
|
||||
enableCompletion = true;
|
||||
autocd = true;
|
||||
initContent = lib.getExe self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@ -7,7 +7,7 @@
|
||||
flake.homeModules.sysFetch = { pkgs, lib, ... }: {
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
package = self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
|
||||
package = pkgs.fastfetch; #self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user