--no-edit

This commit is contained in:
TheGeneralist 2025-10-12 16:45:54 +02:00
parent 52f1094f41
commit f383ee8250
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
2 changed files with 75 additions and 0 deletions

View file

@ -67,3 +67,72 @@ alias ah = cd ~/dotfiles/hosts/thegeneralist
alias ai3 = nvim /home/thegeneralist/dotfiles/hosts/thegeneralist/dotfiles/i3/config
# alias rb = sudo nixos-rebuild switch --flake ~/dotfiles#thegeneralist
alias rb = nh os switch . -v -- --show-trace --verbose
def greeting [] {
let quotes = [
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"What is impossible for you is not impossible for me."
"Ah, Stil, I live in an apocalyptic dream."
"Greatness is a transitory experience."
"Limits exist only to be exceeded."
"I dont follow paths. I make them."
"What crushes others fuels me."
"Ordinary is the disease. I am the cure."
"You see walls. I see doors."
"Fear is a suggestion. I ignore it."
"If it can be imagined, it can be done—faster."
"Mediocrity is the only true danger."
"I bend reality so you dont have to."
"The impossible is just untested patience."
"Rules are advice I choose to ignore."
"Every boundary is a dare."
"I dont wait for opportunity. I invent it."
"Pain is a fuel. Weakness is optional."
"Victory doesnt ask permission."
"The future bends to those who act."
"Obstacles are just poorly designed stepping stones."
"Chaos is a playground."
"Legends are written in disregard for limits."
"Difficulty is the seasoning of achievement."
"Success belongs to those who steal it."
"Failure is the draft. Mastery is the publication."
"Time fears those who dont respect it."
"I thrive where others break."
"Destiny is negotiable."
"Limits are suggestions, not laws."
"The world bends for persistence."
"I make the rules after winning."
"Every no is a challenge waiting to be conquered."
"I dont follow trends. I create them."
"Adversity is just another form of applause."
"Impossible is an opinion, not a fact."
"I carve paths through resistance."
"Mastery is forged, not granted."
"Chaos reveals the capable."
"The meek inherit nothing."
"I turn hesitation into fuel."
"Pain is temporary. Glory is eternal."
"I thrive in the impossible."
"The weak talk. The strong act."
"Fortune favors my audacity."
"Nothing worth having comes unchallenged."
"Limits are the invention of the timid."
"Every barrier is an invitation."
"I am the variable the universe didnt calculate."
"Victory whispers to those who refuse to listen to fear."
"Failure teaches. I only graduate with honors."
"The extraordinary is a habit, not a gift."
"Resistance exists to prove my strength."
"Legends are crafted in defiance."
"The impossible is just another rehearsal."
]
echo ($quotes | get (random int 0..(($quotes | length) - 1)))
}
greeting

View file

@ -21,6 +21,7 @@ in {
fzf
gh
fastfetch
carapace
];
shellAliases = {
@ -73,6 +74,11 @@ in {
envFile.text = readFile ./env.nu;
environmentVariables = config.environment.variables // homeArgs.config.home.sessionVariables;
};
programs.carapace = {
enable = true;
enableZshIntegration = true;
enableNushellIntegration = true;
};
programs.zsh = {
enable = true;
sessionVariables = config.environment.variables // homeArgs.config.home.sessionVariables;