first try

This commit is contained in:
2025-12-07 00:53:22 -05:00
commit e048d4d5c7
17 changed files with 455 additions and 0 deletions

15
home/bash.nix Normal file
View 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
View File

@@ -0,0 +1,6 @@
{
imports = [
./git.nix
./bash.nix
];
}

8
home/git.nix Normal file
View File

@@ -0,0 +1,8 @@
{...}:
{
programs.git = {
enable = true;
userName = "TheCrazyInsanity";
userEmail = "notarealemailcheckmysite@thecrazyinsanity.win";
};
}