migrates even more things

This commit is contained in:
Dennis Schoepf 2026-03-03 22:58:48 +01:00
parent fc2234ae21
commit 8363764798
6 changed files with 69 additions and 4 deletions

View file

@ -0,0 +1,32 @@
{ ... }:
let
commonPackages =
pkgs: with pkgs; [
neofetch
zip
unzip
ripgrep
fzf
fd
sd
bat
tldr
fortune
just
mmv-go
usbutils
];
in
{
flake.modules.nixos.cli-tools =
{ pkgs, ... }:
{
environment.systemPackages = commonPackages pkgs;
};
flake.modules.darwin.cli-tools =
{ pkgs, ... }:
{
environment.systemPackages = commonPackages pkgs;
};
}