Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e35c1bf
initial dev commit
timothynn Oct 21, 2025
51b2a0e
added files
timothynn Oct 22, 2025
67da8c8
dn"
timothynn Oct 22, 2025
3db8f17
Fix Python package conflicts and rebuild system
timothynn Oct 22, 2025
21d3ba3
updated modules
timothynn Oct 25, 2025
1c88836
updated
timothynn Oct 28, 2025
3af5727
added some files
timothynn Oct 28, 2025
bbe9221
a
timothynn Oct 29, 2025
6c4676b
dog fixxed
timothynn Oct 29, 2025
ac9d32e
hyprland additions
timothynn Oct 29, 2025
a78f4f9
utilities
timothynn Oct 29, 2025
3ba2e03
fix
timothynn Oct 29, 2025
fa7d9b2
network:rofi
timothynn Oct 29, 2025
414fd49
updated
timothynn Oct 30, 2025
b0590f6
latest
timothynn Oct 30, 2025
d5b12db
Fix NUR overlay and gemini package issues
timothynn Oct 30, 2025
13ea523
Fix configuration issues: disable useGlobalPkgs, fix brave package name
timothynn Oct 30, 2025
856113b
updated
timothynn Oct 30, 2025
c51ccfd
Update deprecated package names: noto-fonts-emoji -> noto-fonts-color…
timothynn Oct 31, 2025
8b6b098
Refactor development environment: install GitHub Copilot CLI via npm …
timothynn Nov 2, 2025
377a6c4
Update firewall configuration: add allowedTCPPorts and allowedUDPPort…
timothynn Nov 2, 2025
12d0d7a
Add utility modules and scripts for enhanced desktop experience
timothynn Nov 2, 2025
5a77028
Fix keybinding collisions and update application references in Hyprla…
timothynn Nov 3, 2025
e6c2a52
Refactor .NET development environment: add .NET MAUI support, keyring…
timothynn Nov 3, 2025
b554efe
Refactor Hyprland and Waybar configurations: update environment varia…
timothynn Nov 3, 2025
4188418
Enhance Hyprland and Waybar configurations: update keyring settings, …
timothynn Nov 4, 2025
c530da6
Add DBeaver Enterprise Edition package and integrate into NixOS confi…
timothynn Nov 5, 2025
b580d33
Remove obsolete flake inputs and update Makefile for check-updates ta…
timothynn Nov 5, 2025
4a2191c
Add Spicetify configuration and various utilities for enhanced user e…
timothynn Nov 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .direnv/bin/nix-direnv-reload
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -e
if [[ ! -d "/home/tim/.dotfiles" ]]; then
echo "Cannot find source directory; Did you move it?"
echo "(Looking for "/home/tim/.dotfiles")"
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
exit 1
fi

# rebuild the cache forcefully
_nix_direnv_force_reload=1 direnv exec "/home/tim/.dotfiles" true

# Update the mtime for .envrc.
# This will cause direnv to reload again - but without re-building.
touch "/home/tim/.dotfiles/.envrc"

# Also update the timestamp of whatever profile_rc we have.
# This makes sure that we know we are up to date.
touch -r "/home/tim/.dotfiles/.envrc" "/home/tim/.dotfiles/.direnv"/*.rc
Loading