aboutsummaryrefslogtreecommitdiff
path: root/home/programs
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-31 08:57:48 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-31 08:57:48 -0800
commit25735890a439d813f3714907952ad7c3a1cbd060 (patch)
tree6c10c9e096778f66e14cb8949102f5dff2bfbe9a /home/programs
parentinstall a few packages at the system level (diff)
downloadinfra-25735890a439d813f3714907952ad7c3a1cbd060.tar.gz
there's no need to have this in a separate file
Diffstat (limited to '')
-rw-r--r--home/programs/cli/core.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/home/programs/cli/core.nix b/home/programs/cli/core.nix
deleted file mode 100644
index 7d04684..0000000
--- a/home/programs/cli/core.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, pkgs, ... }:
-{
- home.packages = with pkgs; [
- delve
- dive # explore layers in docker images
- docker
- docker-credential-helpers
- nil # nix lsp
- nix-direnv # integration with direnv
- nixfmt-rfc-style # new formatter
- shellcheck
- tree
- wget
- wireshark
- ];
-
- programs.fish.shellAliases = {
- grep = "${pkgs.ripgrep}/bin/rg";
- ps = "${pkgs.procs}/bin/procs";
- };
-
- home.sessionPath = [
- "${config.home.homeDirectory}/.local/bin"
- ];
-}