made my own fetch tool

This commit is contained in:
ISnortPennies 2023-02-01 01:55:54 -05:00
parent 6e99b9e9c9
commit 67dbd4ceb8
4 changed files with 7 additions and 2 deletions

View file

@ -22,6 +22,10 @@
url = "github:ISnortPennies/sxhkd-flake"; url = "github:ISnortPennies/sxhkd-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
fetch-rs = {
url = "github:ISnortPennies/fetch-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { outputs = {
self, self,
@ -45,6 +49,7 @@
webcord = inputs.nixpkgs-master.legacyPackages.${system}.webcord; webcord = inputs.nixpkgs-master.legacyPackages.${system}.webcord;
}) })
inputs.suckless.overlay inputs.suckless.overlay
inputs.fetch-rs.overlays.${system}.default
]; ];
}; };
in { in {

View file

@ -34,6 +34,7 @@
page #use nvim as a pager page #use nvim as a pager
librewolf #best browser librewolf #best browser
inputs.nvim-config.packages.${pkgs.system}.default #my custom nvim flake inputs.nvim-config.packages.${pkgs.system}.default #my custom nvim flake
fetch-rs
]; ];
}; };
} }

View file

@ -4,7 +4,6 @@
... ...
}: { }: {
#discord bot stuff #discord bot stuff
virtualisation.docker.enable = false;
systemd.services.parrot = { systemd.services.parrot = {
enable = true; enable = true;
path = with pkgs; [parrot yt-dlp ffmpeg]; path = with pkgs; [parrot yt-dlp ffmpeg];

View file

@ -11,7 +11,7 @@
shellAliases = { shellAliases = {
ls = "exa --long --icons"; ls = "exa --long --icons";
}; };
interactiveShellInit = "nitch"; interactiveShellInit = "fetch-rs";
}; };
programs = { programs = {
zsh = { zsh = {