Oliver Davies 2024-12-14 02:24:56 +00:00
parent 8cdc6a511d
commit 73d801d7ac
4 changed files with 28 additions and 0 deletions
nix/modules/home-manager/features/cli

View file

@ -36,6 +36,7 @@
./git.nix
./htop.nix
./lsd.nix
./notes.nix
./pet.nix
./phpactor.nix
./ripgrep.nix

View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ notes ];
}