1
Fork 0

feat: neofetch, some clis and stuff

This commit is contained in:
Matei Adriel 2020-05-13 12:34:15 +03:00
parent eb36734615
commit aa9aacf494
6 changed files with 23 additions and 13 deletions
modules/applications

View file

@ -5,7 +5,10 @@
exa # ls replacement
mkpasswd # hash passwords
gnupg
typespeed
typespeed # speed typing game
unixtools.xxd # to dump binary stuff into a text file (used it for a ctf)
youtube-dl # download from youtube
neofetch # display system information
# editors
vscodium

View file

@ -0,0 +1,4 @@
{
shellInit =
"neofetch --package_managers on --cpu_brand on --cpu_cores on --memory_percent on --memory_display infobar --os_arch on";
}

View file

@ -1,13 +1,12 @@
{ pkgs, ... }:
let shellAliases = import ./aliases.nix;
let
shellAliases = import ./aliases.nix;
common = import ./common.nix;
in {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
shellInit = common.shellInit;
enable = true;
# plugins = [{
# name = "agnoster";
# src = pkgs.agnoster;
# }];
};
}