diff --git a/home/bash.nix b/home/bash.nix index 6167155..cbe53f4 100644 --- a/home/bash.nix +++ b/home/bash.nix @@ -1,14 +1,14 @@ { config, pkgs, ... }: { - home.file.".bash_aliases".source = files/bash_aliases; - home.file.".bash_functions".source = files/bash_functions; - home.file.".bash_hosts".source = files/bash_hosts; - home.file.".bash_keychain".source = files/bash_keychain; - home.file.".bash_logout".source = files/bash_logout; - home.file.".bash_motd".source = files/bash_motd; - home.file.".bash_motd_ownscript.sh".source = files/bash_motd_ownscript.sh; - home.file.".bash_profile".source = files/bash_profile; - home.file.".bashrc".source = files/bashrc; - home.file.".bash_ssh".source = files/bash_ssh; + home.file.".bash_aliases".source = files/bash/bash_aliases; + home.file.".bash_functions".source = files/bash/bash_functions; + home.file.".bash_hosts".source = files/bash/bash_hosts; + home.file.".bash_keychain".source = files/bash/bash_keychain; + home.file.".bash_logout".source = files/bash/bash_logout; + home.file.".bash_motd".source = files/bash/bash_motd; + home.file.".bash_motd_ownscript.sh".source = files/bash/bash_motd_ownscript.sh; + home.file.".bash_profile".source = files/bash/bash_profile; + home.file.".bashrc".source = files/bash/bashrc; + home.file.".bash_ssh".source = files/bash/bash_ssh; } diff --git a/home/files/bash_aliases b/home/files/bash/bash_aliases similarity index 100% rename from home/files/bash_aliases rename to home/files/bash/bash_aliases diff --git a/home/files/bash_functions b/home/files/bash/bash_functions similarity index 100% rename from home/files/bash_functions rename to home/files/bash/bash_functions diff --git a/home/files/bash_hosts b/home/files/bash/bash_hosts similarity index 100% rename from home/files/bash_hosts rename to home/files/bash/bash_hosts diff --git a/home/files/bash_keychain b/home/files/bash/bash_keychain similarity index 100% rename from home/files/bash_keychain rename to home/files/bash/bash_keychain diff --git a/home/files/bash_logout b/home/files/bash/bash_logout similarity index 100% rename from home/files/bash_logout rename to home/files/bash/bash_logout diff --git a/home/files/bash_motd b/home/files/bash/bash_motd similarity index 100% rename from home/files/bash_motd rename to home/files/bash/bash_motd diff --git a/home/files/bash_motd_ownscript.sh b/home/files/bash/bash_motd_ownscript.sh similarity index 100% rename from home/files/bash_motd_ownscript.sh rename to home/files/bash/bash_motd_ownscript.sh diff --git a/home/files/bash_profile b/home/files/bash/bash_profile similarity index 100% rename from home/files/bash_profile rename to home/files/bash/bash_profile diff --git a/home/files/bash_ssh b/home/files/bash/bash_ssh similarity index 100% rename from home/files/bash_ssh rename to home/files/bash/bash_ssh diff --git a/home/files/bashrc b/home/files/bash/bashrc similarity index 100% rename from home/files/bashrc rename to home/files/bash/bashrc