whole flake: remove wrapper-manager
a
This commit is contained in:
parent
3ad0bedbfe
commit
931b8c9c7e
8 changed files with 28 additions and 138 deletions
|
@ -1,20 +1,42 @@
|
|||
{
|
||||
config,
|
||||
inputs',
|
||||
lib,
|
||||
self',
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.modules.system.programs.editors.helix;
|
||||
inherit (config.modules.other.system) username;
|
||||
inherit (lib) mkIf getExe;
|
||||
inherit (inputs'.helix.packages) helix;
|
||||
wrapped-helix = pkgs.symlinkJoin {
|
||||
name = "helix-wrapped";
|
||||
paths = with pkgs; [
|
||||
helix
|
||||
|
||||
# C/C++
|
||||
clang-tools
|
||||
|
||||
# Markdown
|
||||
marksman
|
||||
|
||||
# Nix
|
||||
nil
|
||||
lldb_19
|
||||
# Bash
|
||||
bash-language-server
|
||||
|
||||
# Shell
|
||||
shellcheck
|
||||
];
|
||||
};
|
||||
in {
|
||||
imports = [./languages.nix];
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${username} = {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
package = self'.packages.helix;
|
||||
package = wrapped-helix;
|
||||
|
||||
settings = {
|
||||
theme = "catppuccin_mocha";
|
||||
|
|
71
modules/shell/packages.nix
Normal file
71
modules/shell/packages.nix
Normal file
|
@ -0,0 +1,71 @@
|
|||
{pkgs}: (with pkgs; [
|
||||
# better cd
|
||||
zoxide
|
||||
#better ls
|
||||
eza
|
||||
|
||||
# better cat
|
||||
bat
|
||||
|
||||
# clipboard
|
||||
yazi
|
||||
serpl
|
||||
diff-so-fancy
|
||||
tig
|
||||
|
||||
sesh
|
||||
mprocs
|
||||
curlie
|
||||
entr
|
||||
procs
|
||||
sd
|
||||
# mult
|
||||
glow
|
||||
|
||||
gdb
|
||||
# dua-cli
|
||||
dust
|
||||
kondo
|
||||
|
||||
# better grep
|
||||
ripgrep
|
||||
|
||||
# better dig
|
||||
dogdns
|
||||
|
||||
# simply the best fetch tool out there
|
||||
microfetch
|
||||
|
||||
fzf
|
||||
lldb_19
|
||||
element
|
||||
carapace
|
||||
difftastic
|
||||
hexyl
|
||||
gitui
|
||||
iputils
|
||||
gnumake
|
||||
gping
|
||||
asciinema
|
||||
inetutils
|
||||
scc
|
||||
starship
|
||||
onefetch
|
||||
wget
|
||||
cpufetch
|
||||
yt-dlp
|
||||
tealdeer
|
||||
glow
|
||||
hyperfine
|
||||
imagemagick
|
||||
ffmpeg-full
|
||||
catimg
|
||||
nmap
|
||||
wget
|
||||
fd
|
||||
jq
|
||||
rsync
|
||||
figlet
|
||||
unzip
|
||||
zip
|
||||
])
|
Loading…
Add table
Add a link
Reference in a new issue