many small changes
This commit is contained in:
parent
f7199197c6
commit
f44ccff64f
6 changed files with 12 additions and 11 deletions
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 "
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue