diff --git a/.dotbot.conf.yaml b/.dotbot.conf.yaml index c4c6570..04987e4 100644 --- a/.dotbot.conf.yaml +++ b/.dotbot.conf.yaml @@ -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 diff --git a/nix/home/default.nix b/nix/home/default.nix index acbedf5..a3b5b66 100644 --- a/nix/home/default.nix +++ b/nix/home/default.nix @@ -24,6 +24,7 @@ in ./ruby ./sesh ./skhd + ./wget ./yabai ./yazi ]; diff --git a/nix/home/wget/default.nix b/nix/home/wget/default.nix new file mode 100644 index 0000000..69df319 --- /dev/null +++ b/nix/home/wget/default.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + home.file = { + ".wget" = { source = ./wget; }; + }; + + home.packages = [ pkgs.wget ]; +} diff --git a/url/wget b/nix/home/wget/wget similarity index 100% rename from url/wget rename to nix/home/wget/wget