Specify cli packages in home-manager

This commit is contained in:
ItsDrike 2024-03-24 12:24:00 +01:00
parent 5b2d36fcbf
commit 1e2a2c0222
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
6 changed files with 39 additions and 7 deletions

View file

@ -0,0 +1,5 @@
_: {
imports = [
./shared.nix
];
}

View file

@ -0,0 +1,21 @@
{ config, pkgs, lib, ... }:
let
username = config.myOptions.system.username;
in
{
home-manager.users.${username} = {
home.packages = with pkgs; [
fzf
jq
fd
ripgrep
unzip
file
rsync
btop
hyperfine
delta
gnupg
];
};
}