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 = [ 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
];
};
};
} }

View file

@ -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
]; ];
@ -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;
};
}; };
}; };
} }