Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
10 lines
144 B
Nix
10 lines
144 B
Nix
{
|
|
flake.modules.nixos.cli-tools = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
htop
|
|
vim
|
|
];
|
|
};
|
|
}
|