Compare commits
No commits in common. "83f3edf2d350bf309e488ca21b7c7b429b451070" and "47ccc19409b571d7033ddb0299695f325fc9aac2" have entirely different histories.
83f3edf2d3
...
47ccc19409
2 changed files with 7 additions and 20 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ inputs, ... }: {
|
{inputs, ...}: let
|
||||||
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./global
|
./global
|
||||||
./features/desktop/awesome
|
./features/desktop/awesome
|
||||||
|
@ -6,6 +7,7 @@
|
||||||
./features/games
|
./features/games
|
||||||
./features/coding
|
./features/coding
|
||||||
./features/desktop/common/alacritty.nix
|
./features/desktop/common/alacritty.nix
|
||||||
|
# ./features/desktop/common/3d-printing.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = [
|
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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,12 +3,14 @@
|
||||||
settings = {
|
settings = {
|
||||||
# autostart
|
# autostart
|
||||||
exec-once = [
|
exec-once = [
|
||||||
|
"picokontroller" # volume & light control
|
||||||
"systemctl --user start hyprpolkitagent" # polkit agent
|
"systemctl --user start hyprpolkitagent" # polkit agent
|
||||||
"hyprshade on bluelight" # set bluelight shader
|
"hyprshade on bluelight" # set bluelight shader
|
||||||
"fcitx5 -d" # japanese typing
|
"fcitx5 -d" # japanese typing
|
||||||
"webcord --start-minimized --force-audio-share-support" # discord but some privacy
|
"webcord --start-minimized --force-audio-share-support" # discord but some privacy
|
||||||
"kdeconnect-indicator & kdeconnect-cli -l" # kde connect
|
"kdeconnect-indicator & kdeconnect-cli -l" # kde connect
|
||||||
"signal-desktop --start-in-tray"
|
"signal-desktop --start-in-tray"
|
||||||
|
"easyeffects --gapplication-service"
|
||||||
"wl-clip-persist --clipboard both &" # Keep Wayland clipboard even after programs close
|
"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
|
"wl-paste --watch cliphist store &" # Store clipboard contents in cliphist on each change
|
||||||
];
|
];
|
||||||
|
@ -117,7 +119,7 @@
|
||||||
"$mainMod, Space, exec, $menu"
|
"$mainMod, Space, exec, $menu"
|
||||||
"$mainMod, P, pseudo" # dwindle
|
"$mainMod, P, pseudo" # dwindle
|
||||||
"$mainMod, J, togglesplit" # 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
|
# Move focus with mainMod + arrow keys
|
||||||
"$mainMod, left, movefocus, l"
|
"$mainMod, left, movefocus, l"
|
||||||
|
@ -210,15 +212,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
monitor = [
|
monitor = [
|
||||||
"DP-1, 1920x1080@74.97, auto-left, 1" # Adalbert: Left
|
",preferred,auto,auto"
|
||||||
"DP-3, 2560x1440@143.86, auto-right, 1" # Adalbert: Right
|
|
||||||
"eDP-1, 1920x1080@60, auto, 1.1" # Ludwig
|
|
||||||
",highrr,auto,auto"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
misc = {
|
|
||||||
vrr = 1;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue