first try
This commit is contained in:
15
home/bash.nix
Normal file
15
home/bash.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{}:
|
||||
{
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
|
||||
bashrcExtra = ''
|
||||
export PATH="$PATH:$HOME/bin:$HOME/.local/bin:$HOME/go/bin"
|
||||
'';
|
||||
|
||||
shellAliases = {
|
||||
activate-linux = "echo Done!"; # I am a shitposter at heart
|
||||
};
|
||||
};
|
||||
}
|
||||
6
home/default.nix
Normal file
6
home/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./git.nix
|
||||
./bash.nix
|
||||
];
|
||||
}
|
||||
8
home/git.nix
Normal file
8
home/git.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{...}:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "TheCrazyInsanity";
|
||||
userEmail = "notarealemailcheckmysite@thecrazyinsanity.win";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user