mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
12 lines
190 B
Nix
12 lines
190 B
Nix
{ ... }: {
|
|
flake.nixosModules.shellapps = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
git
|
|
nil
|
|
yaml-language-server
|
|
tree
|
|
];
|
|
};
|
|
}
|