commit | 3fda1228bf5f83df8154daa67b46ea02ac917fdc | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Feb 13 10:12:04 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Feb 26 13:09:39 2023 +0000 |
tree | 6d5204356698539447bf4b8cc1171d10fc31529e | |
parent | 2198f2d9300c4ffd96d8da1668146b300a5597d0 [diff] |
Install programs to help with common archive formats
diff --git a/modules/archives.nix b/modules/archives.nix new file mode 100644 index 0000000..51ed41d --- /dev/null +++ b/modules/archives.nix
@@ -0,0 +1,3 @@ +{ pkgs, ... }: { + home.home.packages = with pkgs; [ zip unzip gnutar tarlz ]; +}