Fix deployments to ARM systems
This commit is contained in:
parent
3cad488ee0
commit
3b815a2bb7
1 changed files with 6 additions and 4 deletions
|
|
@ -16,8 +16,9 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.systemPackages =
|
environment.systemPackages = (
|
||||||
(with pkgs; [
|
with pkgs;
|
||||||
|
[
|
||||||
bat
|
bat
|
||||||
bind # for dig
|
bind # for dig
|
||||||
curl
|
curl
|
||||||
|
|
@ -34,12 +35,13 @@ in
|
||||||
pre-commit
|
pre-commit
|
||||||
progress
|
progress
|
||||||
python3
|
python3
|
||||||
|
ragenix
|
||||||
ripgrep
|
ripgrep
|
||||||
sqlite
|
sqlite
|
||||||
tcpdump
|
tcpdump
|
||||||
usbutils
|
usbutils
|
||||||
wget
|
wget
|
||||||
])
|
]
|
||||||
++ [ inputs.agenix.packages.x86_64-linux.default ];
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue