added better utils

This commit is contained in:
willifan 2024-09-25 10:54:34 +02:00
parent ffe11e0b02
commit 8c5df332c5
2 changed files with 14 additions and 1 deletions

View file

@ -1,11 +1,12 @@
{ ... }: { ... }:
{ {
imports = [ imports = [
./nixvim
./utils
./envvar.nix ./envvar.nix
./git.nix ./git.nix
./hyfetch.nix ./hyfetch.nix
./locales.nix ./locales.nix
./nixvim
#./ssh.nix #./ssh.nix
./user.nix ./user.nix
./zsh.nix ./zsh.nix

View file

@ -0,0 +1,12 @@
{ ... }:
{
home-manager.users.willifan = {
services.avizo.enable = true;
programs.bat.enable = true;
programs.btop.enable = true;
programs.fuzzel.enable = true;
programs.yazi.enable = true;
};
}