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’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config, pkgs, libs, inputs, ... }:
|
{ config, pkgs, libs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
@@ -152,6 +151,7 @@ libreoffice
|
|||||||
gruvbox-gtk-theme
|
gruvbox-gtk-theme
|
||||||
hyprpicker
|
hyprpicker
|
||||||
powertop
|
powertop
|
||||||
|
telnet
|
||||||
#we need to install gnome and kde utils individually as we dont use gnome
|
#we need to install gnome and kde utils individually as we dont use gnome
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
snapshot
|
snapshot
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ imports = [
|
|||||||
../../modules/home-manager/neovim.nix # dont use nixvim. broken
|
../../modules/home-manager/neovim.nix # dont use nixvim. broken
|
||||||
../../modules/home-manager/rclone.nix
|
../../modules/home-manager/rclone.nix
|
||||||
../../modules/home-manager/waybar.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 config
|
||||||
gtk.theme = {
|
gtk.theme = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Gruvbox-GTK-Theme-BL-MB = {
|
||||||
|
enable = true;
|
||||||
name = "Gruvbox-GTK-Theme-BL-MB";
|
name = "Gruvbox-GTK-Theme-BL-MB";
|
||||||
package = pkgs.gruvbox-gtk-theme;
|
package = pkgs.gruvbox-gtk-theme;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# ssh config
|
# ssh config
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.oh-my-posh = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
useTheme = "gruvbox";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -5,5 +5,13 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
initContent = "fastfetch\n";
|
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