From 4a618b8f51d3271a20c16a137a24b250012f9a14 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sat, 7 Oct 2023 08:19:42 -0500 Subject: [PATCH] better orginization under home/files --- home/bash.nix | 20 ++++++++++---------- home/files/{ => bash}/bash_aliases | 0 home/files/{ => bash}/bash_functions | 0 home/files/{ => bash}/bash_hosts | 0 home/files/{ => bash}/bash_keychain | 0 home/files/{ => bash}/bash_logout | 0 home/files/{ => bash}/bash_motd | 0 home/files/{ => bash}/bash_motd_ownscript.sh | 0 home/files/{ => bash}/bash_profile | 0 home/files/{ => bash}/bash_ssh | 0 home/files/{ => bash}/bashrc | 0 11 files changed, 10 insertions(+), 10 deletions(-) rename home/files/{ => bash}/bash_aliases (100%) rename home/files/{ => bash}/bash_functions (100%) rename home/files/{ => bash}/bash_hosts (100%) rename home/files/{ => bash}/bash_keychain (100%) rename home/files/{ => bash}/bash_logout (100%) rename home/files/{ => bash}/bash_motd (100%) rename home/files/{ => bash}/bash_motd_ownscript.sh (100%) rename home/files/{ => bash}/bash_profile (100%) rename home/files/{ => bash}/bash_ssh (100%) rename home/files/{ => bash}/bashrc (100%) 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