Add more utility packages; Add fish config
This commit is contained in:
parent
e9570e8e96
commit
2a3b37c39e
|
@ -38,7 +38,14 @@
|
|||
environment.variables.COLORTERM = "truecolor";
|
||||
|
||||
# Packages used on all systems
|
||||
environment.systemPackages = with pkgs; [ git wget xclip killall ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
wget
|
||||
xclip
|
||||
killall
|
||||
rsync
|
||||
sqlite
|
||||
];
|
||||
|
||||
## Locale/Timezone
|
||||
|
||||
|
|
|
@ -11,7 +11,17 @@ in {
|
|||
home.username = "agatha";
|
||||
home.homeDirectory = "/home/agatha";
|
||||
home.stateVersion = config.system.stateVersion;
|
||||
home.packages = with pkgs; [ gnupg fzf btop bat ripgrep tealdeer ouch exa ];
|
||||
home.packages = with pkgs; [
|
||||
bat
|
||||
btop
|
||||
exa
|
||||
fzf
|
||||
gnupg
|
||||
ouch
|
||||
ripgrep
|
||||
tealdeer
|
||||
zoxide
|
||||
];
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
|
@ -68,8 +78,11 @@ in {
|
|||
|
||||
fish = {
|
||||
enable = true;
|
||||
# interactiveShellInit = builtins.readFile (pkgs.fetchurl
|
||||
# "https://git.lain.faith/sorceress/dotfiles/raw/branch/mistress/.config/fish/config.fish");
|
||||
interactiveShellInit = builtins.readFile (pkgs.fetchurl {
|
||||
url =
|
||||
"https://git.lain.faith/sorceress/dotfiles/raw/commit/80be649e9663e3db67041192c714329e20b10cc9/.config/fish/config.fish";
|
||||
sha256 = "sha256-ZZCTXnRZfotksiJj7iVJnLz+XnWHTlIsZzv3gbbZoRQ=";
|
||||
});
|
||||
plugins = [
|
||||
{
|
||||
name = "fzf";
|
||||
|
|
Loading…
Reference in New Issue