feat: neofetch, some clis and stuff
This commit is contained in:
parent
eb36734615
commit
aa9aacf494
6 changed files with 23 additions and 13 deletions
modules/applications
|
@ -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
|
||||
|
|
4
modules/applications/shells/common.nix
Normal file
4
modules/applications/shells/common.nix
Normal 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";
|
||||
}
|
|
@ -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;
|
||||
# }];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue