Compare commits

...

3 commits

Author SHA1 Message Date
67a2858dd9
chore: alphebatize formatters 2025-03-21 11:18:07 +00:00
7c74f90534
chore(hyprland): update monitor configuration
Adds a couple of overclocks I did to my CRT and also cleans up the cruft
from me being on hyprland for ages
2025-03-21 11:17:31 +00:00
6edd87f13a
fix: properly source env-vars
Had an issue where hyprland wouldn't source the env-vars for stuff
because I put the source for it under the execute hyprland :)
2025-03-21 11:14:48 +00:00
3 changed files with 20 additions and 18 deletions

View file

@ -1,18 +1,18 @@
# Configure Monitor Setup for Hyprland
# Assign Monitors
#monitor=DP-2,3440x1440@100,0x0,1
#monitor=HDMI-A-1,1920x1080@60,3440x160,1
#monitor=DP-3,disable
# Set Default Workspaces
#workspace=HDMI-A-1,7
#workspace=DP-2,1
monitor=eDP-1,2256x1504@60,0x0,1.5
#monitor=DP-2,1024x786,2256x0,1
monitor=eDP-1,preferred,auto,1.5
workspace=eDP-1,1
## CRT Fun ##
# Good Middle Ground
# monitor=DP-1,1280x1024@150,auto,1
# High Rez
# monitor=DP-1,2500x2000@30,auto,1
# Fast As FUK BOIZ - doesn't work well maybe adaptor
#monitor=DP-1,640x480@240,auto,1
# Auto Monitor Rule
monitor = , preferred, auto, 1

View file

@ -113,11 +113,11 @@ cmp.setup {
-- Funky plugins
require("conform").setup({
formatters_by_ft = {
C = { "clang-format"},
css = { "prettier", },
html = { "prettier", },
javascript = { "prettier", },
python = { "black" },
C = { "clang-format"},
typst = { "prettypst" }
},
formatters = {

View file

@ -93,13 +93,15 @@ eval "$(zoxide init zsh)"
export PATH="${PATH}:/home/flyingstitchman/.cargo/bin"
# Clean Up
export MBSYNCRC=${XDG_CONFIG_HOME:-~/.config}/mbsync/config
export PASSWORD_STORE_DIR=${XDG_CONFIG_HOME:-~/.config}/password_store
export NOTMUCH_CONFIG=${XDG_CONFIG_HOME-~/.config}/notmuch/config
export MBSYNCRC=$XDG_CONFIG_HOME/mbsync/config
export PASSWORD_STORE_DIR=$XDG_CONFIG_HOME/password_store
export NOTMUCH_CONFIG=$XDG_CONFIG_HOME/notmuch/config
export KDEHOME="$XDG_CONFIG_HOME"/kde
export GRADLE_USER_HOME="$XDG_DATA_HOME"/gradle
export GNUPGHOME=$XDG_DATA_HOME/gnupg
export GOPATH="$XDG_DATA_HOME"
export GOMODCACHE="$XDG_CACHE_HOME"
export GPG_TTY=$(tty)
export NUGET_PACKAGES="$XDG_CACHE_HOME"/NuGetPackages
export _JAVA_OPTIONS=-Djava.util.prefs.userRoot="$XDG_CONFIG_HOME"/java
export WINEPREFIX="$XDG_DATA_HOME"/wineprefixes/default
@ -117,6 +119,9 @@ reconfig() {
sudo nixos-rebuild --flake "/etc/nixos#$(cat /etc/hostname)" "$@"
}
# Home Manager Variables
source ~/.local/state/nix/profiles/home-manager/home-path/etc/profile.d/hm-session-vars.sh
# Autostart Hyprland after all environmental Variables have been declared
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
exec Hyprland
@ -126,6 +131,3 @@ export QSYS_ROOTDIR="~/.cache/paru/clone/quartus-free/pkg/quartus-free-quartus/o
# Nix Direnv Support
eval "$(direnv hook zsh)"
# Home Manager Variables
source ~/.local/state/nix/profiles/home-manager/home-path/etc/profile.d/hm-session-vars.sh