Add missing packages for creating ISO files
This commit is contained in:
parent
74af10dbe7
commit
40b600a748
1 changed files with 12 additions and 3 deletions
15
flake.nix
15
flake.nix
|
@ -22,9 +22,18 @@
|
||||||
in {
|
in {
|
||||||
devShells = {
|
devShells = {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
packages = [
|
packages = with pkgs; [
|
||||||
pkgs.archiso
|
archiso
|
||||||
pkgs.fish
|
cdrtools
|
||||||
|
fish
|
||||||
|
getopt
|
||||||
|
git
|
||||||
|
jq
|
||||||
|
nix
|
||||||
|
p7zip
|
||||||
|
rsync
|
||||||
|
unzip
|
||||||
|
wimlib
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue