mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
started using oh-my-posh
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, libs, inputs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
@@ -152,6 +151,7 @@ libreoffice
|
||||
gruvbox-gtk-theme
|
||||
hyprpicker
|
||||
powertop
|
||||
telnet
|
||||
#we need to install gnome and kde utils individually as we dont use gnome
|
||||
gnome-calculator
|
||||
snapshot
|
||||
|
||||
@@ -18,6 +18,7 @@ imports = [
|
||||
../../modules/home-manager/neovim.nix # dont use nixvim. broken
|
||||
../../modules/home-manager/rclone.nix
|
||||
../../modules/home-manager/waybar.nix
|
||||
../../modules/home-manager/oh-my-posh # zsh customizer
|
||||
];
|
||||
|
||||
|
||||
@@ -78,9 +79,12 @@ pkgs.gruvbox-gtk-theme
|
||||
# gtk config
|
||||
gtk.theme = {
|
||||
enable = true;
|
||||
Gruvbox-GTK-Theme-BL-MB = {
|
||||
enable = true;
|
||||
name = "Gruvbox-GTK-Theme-BL-MB";
|
||||
package = pkgs.gruvbox-gtk-theme;
|
||||
};
|
||||
};
|
||||
|
||||
# ssh config
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.oh-my-posh = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
useTheme = "gruvbox";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -5,5 +5,13 @@
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
initContent = "fastfetch\n";
|
||||
shellAliases = {
|
||||
".." = "z ..";
|
||||
grep = "rg";
|
||||
ll = "ls -alF";
|
||||
la = "ls -A";
|
||||
l = "ls -CF";
|
||||
ls = "ls -hA -s --color";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user