From 47ef05ab310bb466300e93d1459370450414fbc4 Mon Sep 17 00:00:00 2001 From: "grm@eyesin.space" Date: Tue, 2 Sep 2025 23:04:24 +0000 Subject: init --- home/core/default.nix | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 home/core/default.nix (limited to 'home/core/default.nix') 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 + ]; +} -- cgit v1.2.3