Working on termonal stuff

This commit is contained in:
2026-03-07 23:12:22 +01:00
parent 73ff78f694
commit 44a485c9b8
3 changed files with 412 additions and 414 deletions
+338 -336
View File
File diff suppressed because it is too large Load Diff
+16 -14
View File
@@ -1105,42 +1105,41 @@ This is top file of this level which contains just an import statement for all r
** =generated/system/applications/terminal_shell/starship.nix= ** =generated/system/applications/terminal_shell/starship.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/starship.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/starship.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, flakeRoot, ... }: { config, pkgs, lib, user, ... }:
{ {
# Install Starship (optional, system-wide)
environment.systemPackages = with pkgs; [ starship ];
# Home Manager configuration for Starship
home-manager.users.${user.username} = { home-manager.users.${user.username} = {
programs.starship = { programs.starship = {
enable = true; enable = true;
# Enable for specific shells (e.g., bash, zsh, fish) # Starship settings (e.g., theme, modules)
settings = { settings = {
# Your Starship config here (e.g., theme, modules)
addNewline = false; addNewline = false;
# Other settings...
}; };
# Enable shell integration (per-shell) # Enable Starship for specific shells
shellIntegration = {
bash.enable = true; bash.enable = true;
zsh.enable = true; zsh.enable = true;
fish.enable = true; fish.enable = true;
}; };
}; };
};
} }
#+END_SRC #+END_SRC
** =generated/system/applications/terminal_shell/zsh.nix= ** =generated/system/applications/terminal_shell/zsh.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/zsh.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/zsh.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, ... }:
{ {
config,
pkgs,
lib,
user,
...
}:
{
home-manager.users.${user.username} = {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
#autocd = true; dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope
dotDir = "${config.xdg.configHome}/zsh";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
theme = ""; theme = "";
@@ -1157,8 +1156,11 @@ This is top file of this level which contains just an import statement for all r
}; };
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
};
}; };
} }
#+END_SRC #+END_SRC
** =generated/system/development/databases/top.nix= ** =generated/system/development/databases/top.nix=
@@ -1,23 +1,17 @@
{ config, pkgs, lib, user, inputs, flakeRoot, ... }: { config, pkgs, lib, user, ... }:
{ {
# Install Starship (optional, system-wide)
environment.systemPackages = with pkgs; [ starship ];
# Home Manager configuration for Starship
home-manager.users.${user.username} = { home-manager.users.${user.username} = {
programs.starship = { programs.starship = {
enable = true; enable = true;
# Enable for specific shells (e.g., bash, zsh, fish) # Starship settings (e.g., theme, modules)
settings = { settings = {
# Your Starship config here (e.g., theme, modules)
addNewline = false; addNewline = false;
# Other settings...
}; };
# Enable shell integration (per-shell) # Enable Starship for specific shells
shellIntegration = {
bash.enable = true; bash.enable = true;
zsh.enable = true; zsh.enable = true;
fish.enable = true; fish.enable = true;
}; };
}; };
};
} }