-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from sioodmy/calypso
Calypso
- Loading branch information
Showing
34 changed files
with
914 additions
and
938 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{...}: { | ||
imports = [ | ||
./zsh | ||
./helix.nix | ||
./starship.nix | ||
./bottom.nix | ||
./git.nix | ||
./shell.nix | ||
./tools | ||
./packages.nix | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{pkgs, ...}: { | ||
home.packages = with pkgs; [ | ||
# Runs programs without installing them | ||
comma | ||
|
||
# grep replacement | ||
ripgrep | ||
|
||
# ping, but with cool graph | ||
gping | ||
|
||
# dns client | ||
dogdns | ||
|
||
# neofetch but for git repos | ||
onefetch | ||
|
||
# neofetch but for cpu's | ||
cpufetch | ||
|
||
# neofetch but cooler | ||
pfetch-rs | ||
|
||
# download from yt and other websites | ||
yt-dlp | ||
|
||
# markdown previewer | ||
glow | ||
|
||
# profiling tool | ||
hyperfine | ||
|
||
# gimp for acoustic people | ||
imagemagick | ||
|
||
# premiere pro for acoustic people | ||
ffmpeg-full | ||
|
||
# preview images in terminal | ||
catimg | ||
|
||
# networking stuff | ||
nmap | ||
rsync | ||
wget | ||
|
||
# faster find | ||
fd | ||
|
||
# http request thingy | ||
xh | ||
|
||
# generate regex | ||
grex | ||
|
||
# todo app for acoustic people (wrriten by me :3) | ||
todo | ||
|
||
# json thingy | ||
jq | ||
|
||
# syncthnig for acoustic people | ||
rsync | ||
]; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.