Added hyfetch

This commit is contained in:
vanten-s 2024-08-06 23:16:18 +02:00
parent 5a5ccc2112
commit e514cfb5b2
Signed by: vanten-s
GPG key ID: DE3060396884D3F2
3 changed files with 21 additions and 0 deletions

View file

@ -36,4 +36,5 @@ eval "$(direnv hook zsh)"
unsetopt PROMPT_SP
export PATH=$PATH:$HOME/.cargo/bin
hyfetch

19
home-modules/fetch.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
color_align = {
mode = "horizontal";
};
backend = "fastfetch";
light_dark = "dark";
};
};
home.packages = with pkgs; [
pkgs.fastfetch
];
}

View file

@ -3,6 +3,7 @@
{
imports = [
./home-modules/emacs.nix
./home-modules/fetch.nix
];
nixpkgs.config.allowUnfree = true;