aboutsummaryrefslogtreecommitdiffstats
path: root/home/core/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/core/default.nix')
-rw-r--r--home/core/default.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/home/core/default.nix b/home/core/default.nix
new file mode 100644
index 0000000..575bef0
--- /dev/null
+++ b/home/core/default.nix
@@ -0,0 +1,66 @@
+{pkgs, ...}: {
+ imports = [
+ ./fzf.nix
+ ./git.nix
+ ./keychain.nix
+ ./starship.nix
+ ./tmux.nix
+ ./zsh.nix
+ ];
+
+ programs = {
+ atuin = {
+ enable = true;
+ settings = {
+ enter_accept = false;
+ };
+ flags = [
+ "--disable-up-arrow"
+ ];
+ };
+ nix-index.enable = true;
+ zoxide = {
+ enable = true;
+ options = [
+ "--cmd cd"
+ ];
+ };
+ };
+
+ home.packages = with pkgs; [
+ bat
+ btop
+ comma
+ dnsutils
+ dogdns
+ dua
+ duf
+ exfatprogs
+ eza
+ fd
+ fortune
+ gocryptfs
+ htop
+ inetutils
+ jnv
+ jq
+ iperf
+ lm_sensors
+ ncdu
+ nmap
+ ntfy-sh
+ nvd
+ pwgen
+ rclone
+ restic
+ ripgrep
+ sshfs
+ tldr
+ unzip
+ unrar
+ wget
+ wol
+ zip
+ zstd
+ ];
+}