22 lines
349 B
Nix
22 lines
349 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../programs/kitty.nix
|
|
# ../programs/zsh.nix
|
|
# ../programs/xresources.nix
|
|
../programs/helix.nix
|
|
# ../programs/atuin.nix
|
|
];
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
btop-cuda
|
|
bat
|
|
ripgrep
|
|
fd
|
|
lazygit
|
|
zoxide
|
|
zellij
|
|
ouch
|
|
;
|
|
};
|
|
}
|