13 lines
641 B
Nix
13 lines
641 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
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;
|
|
}
|