From a5092c41a0177ea59f697bdb407d07d499480682 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 13 Jul 2024 12:08:37 +0200 Subject: [PATCH] feat(nix): migrate wget --- .dotbot.conf.yaml | 1 - nix/home/default.nix | 1 + nix/home/wget/default.nix | 9 +++++++++ {url => nix/home/wget}/wget | 0 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 nix/home/wget/default.nix rename {url => nix/home/wget}/wget (100%) 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