diff options
Diffstat (limited to '')
-rw-r--r-- | pkgs/by-name/up/update-sys/package.nix | 29 | ||||
-rwxr-xr-x | pkgs/by-name/up/update-sys/update-sys.sh (renamed from pkgs/sources/scripts/source/small_functions/update-sys.sh) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/.envrc (renamed from pkgs/sources/update_vim_plugins/.envrc) | 0 | ||||
-rwxr-xr-x | pkgs/by-name/up/update-vim-plugins/check-duplicates.sh (renamed from pkgs/sources/update_vim_plugins/check-duplicates.sh) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/flake.lock (renamed from pkgs/sources/update_vim_plugins/flake.lock) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/flake.nix (renamed from pkgs/sources/update_vim_plugins/flake.nix) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/package.nix (renamed from pkgs/sources/update_vim_plugins/package.nix) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/poetry.lock (renamed from pkgs/sources/update_vim_plugins/poetry.lock) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/pyproject.toml (renamed from pkgs/sources/update_vim_plugins/pyproject.toml) | 0 | ||||
-rwxr-xr-x | pkgs/by-name/up/update-vim-plugins/update.sh (renamed from pkgs/sources/update_vim_plugins/update.sh) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__init__.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/__init__.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__main__.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/__main__.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/cleanup.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/cleanup.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/helpers.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/helpers.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/nix.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/nix.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/plugin.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/plugin.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/spec.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/spec.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/__init__.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/tests/__init__.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/fixtures.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/tests/fixtures.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_nix.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_nix.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_plugin.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_plugin.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_spec.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_spec.py) | 0 | ||||
-rw-r--r-- | pkgs/by-name/up/update-vim-plugins/update_vim_plugins/update.py (renamed from pkgs/sources/update_vim_plugins/update_vim_plugins/update.py) | 0 | ||||
-rwxr-xr-x | pkgs/by-name/update_pkgs.sh (renamed from pkgs/sources/update_pkgs.sh) | 0 |
24 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/by-name/up/update-sys/package.nix b/pkgs/by-name/up/update-sys/package.nix new file mode 100644 index 00000000..8777f82d --- /dev/null +++ b/pkgs/by-name/up/update-sys/package.nix @@ -0,0 +1,29 @@ +{ + sysLib, + git, + nixos-rebuild, + sudo, + openssh, + coreutils, + mktemp, + gnugrep, + gnused, + systemd, +}: +sysLib.writeShellScript { + name = "update-sys"; + src = ./update-sys.sh; + generateCompletions = true; + keepPath = false; + dependencies = [ + git + nixos-rebuild + sudo + openssh + coreutils + mktemp + gnugrep + gnused + systemd + ]; +} diff --git a/pkgs/sources/scripts/source/small_functions/update-sys.sh b/pkgs/by-name/up/update-sys/update-sys.sh index d28247f6..d28247f6 100755 --- a/pkgs/sources/scripts/source/small_functions/update-sys.sh +++ b/pkgs/by-name/up/update-sys/update-sys.sh diff --git a/pkgs/sources/update_vim_plugins/.envrc b/pkgs/by-name/up/update-vim-plugins/.envrc index 3550a30f..3550a30f 100644 --- a/pkgs/sources/update_vim_plugins/.envrc +++ b/pkgs/by-name/up/update-vim-plugins/.envrc diff --git a/pkgs/sources/update_vim_plugins/check-duplicates.sh b/pkgs/by-name/up/update-vim-plugins/check-duplicates.sh index 781b8aeb..781b8aeb 100755 --- a/pkgs/sources/update_vim_plugins/check-duplicates.sh +++ b/pkgs/by-name/up/update-vim-plugins/check-duplicates.sh diff --git a/pkgs/sources/update_vim_plugins/flake.lock b/pkgs/by-name/up/update-vim-plugins/flake.lock index 50494465..50494465 100644 --- a/pkgs/sources/update_vim_plugins/flake.lock +++ b/pkgs/by-name/up/update-vim-plugins/flake.lock diff --git a/pkgs/sources/update_vim_plugins/flake.nix b/pkgs/by-name/up/update-vim-plugins/flake.nix index ef440af0..ef440af0 100644 --- a/pkgs/sources/update_vim_plugins/flake.nix +++ b/pkgs/by-name/up/update-vim-plugins/flake.nix diff --git a/pkgs/sources/update_vim_plugins/package.nix b/pkgs/by-name/up/update-vim-plugins/package.nix index e74a29b1..e74a29b1 100644 --- a/pkgs/sources/update_vim_plugins/package.nix +++ b/pkgs/by-name/up/update-vim-plugins/package.nix diff --git a/pkgs/sources/update_vim_plugins/poetry.lock b/pkgs/by-name/up/update-vim-plugins/poetry.lock index f4764b42..f4764b42 100644 --- a/pkgs/sources/update_vim_plugins/poetry.lock +++ b/pkgs/by-name/up/update-vim-plugins/poetry.lock diff --git a/pkgs/sources/update_vim_plugins/pyproject.toml b/pkgs/by-name/up/update-vim-plugins/pyproject.toml index 38caf76d..38caf76d 100644 --- a/pkgs/sources/update_vim_plugins/pyproject.toml +++ b/pkgs/by-name/up/update-vim-plugins/pyproject.toml diff --git a/pkgs/sources/update_vim_plugins/update.sh b/pkgs/by-name/up/update-vim-plugins/update.sh index 1bad12a9..1bad12a9 100755 --- a/pkgs/sources/update_vim_plugins/update.sh +++ b/pkgs/by-name/up/update-vim-plugins/update.sh diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/__init__.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__init__.py index e69de29b..e69de29b 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/__init__.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__init__.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/__main__.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__main__.py index a8d9e06f..a8d9e06f 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/__main__.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__main__.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/cleanup.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/cleanup.py index fd313ed0..fd313ed0 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/cleanup.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/cleanup.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/helpers.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/helpers.py index 8a28b0e8..8a28b0e8 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/helpers.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/helpers.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/nix.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/nix.py index 66a8df4c..66a8df4c 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/nix.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/nix.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/plugin.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/plugin.py index 8334ad53..8334ad53 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/plugin.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/plugin.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/spec.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/spec.py index 0f2fb29c..0f2fb29c 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/spec.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/spec.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/__init__.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/__init__.py index e69de29b..e69de29b 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/__init__.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/__init__.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/fixtures.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/fixtures.py index 75dd251a..75dd251a 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/fixtures.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/fixtures.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_nix.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_nix.py index 46e59f76..46e59f76 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_nix.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_nix.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_plugin.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_plugin.py index 32377e24..32377e24 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_plugin.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_plugin.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_spec.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_spec.py index 2b9a1d24..2b9a1d24 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/tests/test_spec.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/tests/test_spec.py diff --git a/pkgs/sources/update_vim_plugins/update_vim_plugins/update.py b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/update.py index 7eb3eeb4..7eb3eeb4 100644 --- a/pkgs/sources/update_vim_plugins/update_vim_plugins/update.py +++ b/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/update.py diff --git a/pkgs/sources/update_pkgs.sh b/pkgs/by-name/update_pkgs.sh index be1573c6..be1573c6 100755 --- a/pkgs/sources/update_pkgs.sh +++ b/pkgs/by-name/update_pkgs.sh |