From dba61be481c3c16d4e3725b2fe8674d5a756ee11 Mon Sep 17 00:00:00 2001 From: Matt Nish-Lapidus Date: Mon, 14 Jul 2025 20:28:09 -0400 Subject: [PATCH] cleanup --- modules/home/shell-conf.nix | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/modules/home/shell-conf.nix b/modules/home/shell-conf.nix index f276b93..dd5eb81 100644 --- a/modules/home/shell-conf.nix +++ b/modules/home/shell-conf.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs-stable, inputs, pkgs, ... }: +{ inputs, pkgs, ... }: { imports = [ @@ -113,9 +113,6 @@ }; programs = { - # carapace = { - # enable = true; - # }; bash = { enable = true; }; @@ -186,21 +183,22 @@ }; }; - ".local/bin" = { - source = ./shell-conf/scripts; - recursive = true; + home.file = { + ".local/bin" = { + source = ./shell-conf/scripts; + recursive = true; + }; + ".local/share/flf".source = ./shell-conf/flf; }; - - xdg.configFile."starship.toml".source = ./shell-conf/starship/starship.toml; - xdg.configFile."wezterm" = { + xdg.configFile = { + "starship.toml".source = ./shell-conf/starship/starship.toml; + "wezterm" = { recursive = true; source = ./shell-conf/wezterm; }; - - xdg.configFile."rbw".source = ./shell-conf/rbw; - xdg.configFile."isd_tui/config.yaml".source = ./shell-conf/isd_tui/config.yaml; - - home.file.".local/share/flf".source = ./shell-conf/flf; + "rbw".source = ./shell-conf/rbw; + "isd_tui/config.yaml".source = ./shell-conf/isd_tui/config.yaml; + }; }