migrates even more things
This commit is contained in:
parent
fc2234ae21
commit
8363764798
6 changed files with 69 additions and 4 deletions
32
modules/cli-tools/default.nix
Normal file
32
modules/cli-tools/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue