Added GTK theme + fixing starship

This commit is contained in:
zuma 2025-02-07 00:17:32 +01:00
parent a2d3cda826
commit 4642299aae
3 changed files with 61 additions and 25 deletions
commons/home-manager
hosts/t0urn3s0l

View file

@ -3,31 +3,29 @@
enable = true; enable = true;
settings = { settings = {
format = "$username@$hostname:$directory($cmd_duration)$character"; add_newline = false;
command_timeout = 1300;
scan_timeout = 50;
format = "$username@$hostname:$directory$character";
directory = { hostname = {
style = "blue"; disabled = false;
}; format = "[$ssh_symbol](blue dimmed bold)[$hostname]($style)";
ssh_only = false;
character = { style = "green dimmed bold";
success_symbol = "[](purple)";
error_symbol = "[](red)";
vimcmd_symbol = "[](green)";
};
cmd_duration = {
format = "[$duration]($style) ";
style = "yellow";
}; };
username = { username = {
format = "[$user](bold white)"; format = "[$user]($style)";
show_always = true;
style_root = "red bold bg:0x9A348E";
style_user = "yellow bold bg:0x9A348E";
disabled = false;
}; };
hostname = { character = {
ssh_only = false; success_symbol = "[](bold green)";
format = "[$hostname](bold red)"; error_symbol = "[](bold red)";
disabled = false;
}; };
}; };
}; };

View file

@ -147,10 +147,13 @@
firefox # Web browser firefox # Web browser
cinny-desktop # Matrix Client cinny-desktop # Matrix Client
eog # Image viewer eog # Image viewer
dracula-theme # Dark theme
dracula-icon-theme # Dark Icon theme
mpv # Video player
# Shell apps # Shell apps
zsh zsh
starship # Might delete later starship
neovim # <3 neovim # <3
git # <3 bis git # <3 bis
btop # HTOP on steroids btop # HTOP on steroids

View file

@ -76,6 +76,41 @@
# EDITOR = "emacs"; # EDITOR = "emacs";
}; };
qt = {
enable = true;
platformTheme = "gtk";
style= {
name = "Dracula";
package = pkgs.dracula-theme;
};
};
gtk = {
enable = true;
theme = {
package = pkgs.dracula-theme;
name = "Dracula";
};
iconTheme = {
package = pkgs.dracula-icon-theme;
name = "Dracula";
};
};
programs.zsh = {
enable = true;
enableCompletion = true;
shellAliases = {
update = "sudo nixos-rebuild switch --flake /home/zuma/nix_files#t0urn3s0l";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "robbyrussell";
};
};
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }