feat(nix): migrate wget

This commit is contained in:
Stefan Imhoff
2024-07-13 12:08:37 +02:00
parent 094de36957
commit a5092c41a0
4 changed files with 10 additions and 1 deletions

View File

@@ -24,7 +24,6 @@
~/.tmux-cht-languages: tmux/tmux-cht-languages
~/.tmux.conf: tmux/tmux.conf
~/.wezterm.lua: wezterm/wezterm.lua
~/.wget: url/wget
~/.zsh.d: zsh/zsh.d
~/.zshrc: zsh/zshrc

View File

@@ -24,6 +24,7 @@ in
./ruby
./sesh
./skhd
./wget
./yabai
./yazi
];

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home.file = {
".wget" = { source = ./wget; };
};
home.packages = [ pkgs.wget ];
}