many small changes

This commit is contained in:
stitchy 2024-07-13 07:52:09 +00:00
parent f7199197c6
commit f44ccff64f
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
6 changed files with 12 additions and 11 deletions

View file

@ -22,7 +22,7 @@ bindl=,switch:Lid Switch,exec,swaylock --effect-greyscale
# Games # Games
bind=ALTSHIFT,T,exec,gamescope -w 1280 -h 960 -F fsr -f -r 60 wine "/home/flyingstitchman/Documents/Games/Touhou 15 - Legacy of Lunatic Kingdom/th15.exe" bind=ALTSHIFT,T,exec,gamescope -w 1280 -h 960 -f -r 60 wine "/home/flyingstitchman/Documents/Games/Touhou 15 - Legacy of Lunatic Kingdom/th15.exe"
bind=ALTSHIFT,O,exec,osu-lazer bind=ALTSHIFT,O,exec,osu-lazer
bind=ALTSHIFT,C,exec,"/home/flyingstitchman/Documents/Games/Celeste/Celeste" bind=ALTSHIFT,C,exec,"/home/flyingstitchman/Documents/Games/Celeste/Celeste"
bind=ALTSHIFT,S,exec,"/home/flyingstitchman/Documents/Games/Stardew Valley/StardewValley" bind=ALTSHIFT,S,exec,"/home/flyingstitchman/Documents/Games/Stardew Valley/StardewValley"

View file

@ -3,7 +3,6 @@
exec-once=eww open bar exec-once=eww open bar
exec-once=swayidle exec-once=swayidle
exec-once=hyprpaper exec-once=hyprpaper
exec-once=systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
exec-once=dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus exec-once=dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus
exec-once=dunst exec-once=dunst
exec-once=${XDG_CONFIG_HOME:-~/.config}/dunst/scripts/low-battery.sh exec-once=${XDG_CONFIG_HOME:-~/.config}/dunst/scripts/low-battery.sh

View file

@ -86,10 +86,6 @@ dwindle {
preserve_split=true preserve_split=true
} }
master {
new_is_master=true
}
misc { misc {
layers_hog_keyboard_focus=true layers_hog_keyboard_focus=true
vfr=1 vfr=1

View file

@ -111,8 +111,6 @@ export WINEPREFIX="$XDG_DATA_HOME"/wineprefixes/default
export DOTNET_CLI_HOME="$XDG_CONFIG_HOME"/dotnet export DOTNET_CLI_HOME="$XDG_CONFIG_HOME"/dotnet
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
export CARGO_HOME="$XDG_DATA_HOME"/cargo export CARGO_HOME="$XDG_DATA_HOME"/cargo
# Nvidia moment
export WLR_NO_HARDWARE_CURSORS=1
alias dosbox="dosbox -conf "$XDG_CONFIG_HOME"/dosbox/dosbox.conf " alias dosbox="dosbox -conf "$XDG_CONFIG_HOME"/dosbox/dosbox.conf "

View file

@ -27,12 +27,13 @@ let
"libnotify" "libnotify"
"networkmanager-openvpn" "networkmanager-openvpn"
# temporary home manager things # temporary home manager things
"img2pdf"
"inotify-tools" "inotify-tools"
"eww" "eww"
"jq" "jq"
"texliveFull"
"pandoc" "pandoc"
"img2pdf" #"texliveFull"
"typst"
"socat" "socat"
"libimobiledevice" "libimobiledevice"
"ifuse" "ifuse"

View file

@ -45,10 +45,17 @@
users.users.stitchynyan = { users.users.stitchynyan = {
description = "Personal user"; description = "Personal user";
extraGroups = [ "wheel" "networkmanager" "kvm" "libvirtd" "audio" "dialout" ]; extraGroups = [ "audio" "dialout" "docker" "kvm" "libvirtd" "networkmanager" "wheel" ];
home = "/home/stitchynyan"; home = "/home/stitchynyan";
initialHashedPassword = "$y$j9T$rvySCWHYE4AO4A9J0Vf20.$x5hpBNsOWovQFtNfFUIt17OAH5MJFwFBGjxbaEIagJ3"; initialHashedPassword = "$y$j9T$rvySCWHYE4AO4A9J0Vf20.$x5hpBNsOWovQFtNfFUIt17OAH5MJFwFBGjxbaEIagJ3";
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = [
pkgs.fcitx5-mozc
];
};
} }