This commit is contained in:
Matt Nish-Lapidus 2025-07-14 20:28:09 -04:00
parent a855bc4c62
commit dba61be481

View file

@ -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 @@
};
};
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;
};
}