mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 10:40:43 +00:00
Specify cli packages in home-manager
This commit is contained in:
parent
5b2d36fcbf
commit
1e2a2c0222
6 changed files with 39 additions and 7 deletions
5
home/packages/cli/default.nix
Normal file
5
home/packages/cli/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
imports = [
|
||||
./shared.nix
|
||||
];
|
||||
}
|
21
home/packages/cli/shared.nix
Normal file
21
home/packages/cli/shared.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue