Compare commits

..

No commits in common. "83f3edf2d350bf309e488ca21b7c7b429b451070" and "47ccc19409b571d7033ddb0299695f325fc9aac2" have entirely different histories.

2 changed files with 7 additions and 20 deletions

View file

@ -1,4 +1,5 @@
{ inputs, ... }: {
{inputs, ...}: let
in {
imports = [
./global
./features/desktop/awesome
@ -6,6 +7,7 @@
./features/games
./features/coding
./features/desktop/common/alacritty.nix
# ./features/desktop/common/3d-printing.nix
];
home.packages = [
@ -19,14 +21,4 @@
];
};
};
wayland.windowManager.hyprland = {
settings = {
exec-once = [
"picokontroller" # volume & light control
"easyeffects --gapplication-service"
"xrandr --output DP-3 --primary" # since wayland doesn't have a concept of primary monitors
];
};
};
}

View file

@ -3,12 +3,14 @@
settings = {
# autostart
exec-once = [
"picokontroller" # volume & light control
"systemctl --user start hyprpolkitagent" # polkit agent
"hyprshade on bluelight" # set bluelight shader
"fcitx5 -d" # japanese typing
"webcord --start-minimized --force-audio-share-support" # discord but some privacy
"kdeconnect-indicator & kdeconnect-cli -l" # kde connect
"signal-desktop --start-in-tray"
"easyeffects --gapplication-service"
"wl-clip-persist --clipboard both &" # Keep Wayland clipboard even after programs close
"wl-paste --watch cliphist store &" # Store clipboard contents in cliphist on each change
];
@ -117,7 +119,7 @@
"$mainMod, Space, exec, $menu"
"$mainMod, P, pseudo" # dwindle
"$mainMod, J, togglesplit" # dwindle
", Print, exec, hyprshade off && grim -g \"$(slurp -w 0 -d)\" - | wl-copy && hyprshade on bluelight"
", Print, exec, hyprshade off && grim -g \"$(slurp -w 0 -d)\" - | wl-copy && hyprshade on bluelight"
# Move focus with mainMod + arrow keys
"$mainMod, left, movefocus, l"
@ -210,15 +212,8 @@
];
monitor = [
"DP-1, 1920x1080@74.97, auto-left, 1" # Adalbert: Left
"DP-3, 2560x1440@143.86, auto-right, 1" # Adalbert: Right
"eDP-1, 1920x1080@60, auto, 1.1" # Ludwig
",highrr,auto,auto"
",preferred,auto,auto"
];
misc = {
vrr = 1;
};
};
};
}