Compare commits

...

2 commits

3 changed files with 19 additions and 10 deletions

View file

@ -246,8 +246,8 @@
monitor = [ monitor = [
"DP-1, 1920x1080@74.97, auto-left, 1" # Adalbert: Left "DP-1, 1920x1080@74.97, auto-left, 1" # Adalbert: Left
"DP-3, 2560x1440@143.86, auto-right, 1" # Adalbert: Right "DP-3, 2560x1440@143.86, auto-right, 1" # Adalbert: Right
"eDP-1, 1920x1080@60, auto, 1.1" # Ludwig "eDP-1, 1920x1080@60, auto, 1.2" # Ludwig
",highrr,auto,auto" ",preferred,auto,auto"
]; ];
misc = { misc = {

View file

@ -1,18 +1,14 @@
{ { pkgs, ... }: {
pkgs,
inputs,
outputs,
...
}: let
in {
imports = [ imports = [
./global ./global
./features/desktop/awesome ./features/desktop/awesome
./features/desktop/common/alacritty.nix
./features/desktop/hyprland
./features/desktop/gnome ./features/desktop/gnome
./features/coding ./features/coding
]; ];
home.packages = with pkgs; [nextcloud-client]; home.packages = with pkgs; [ nextcloud-client ];
nixpkgs = { nixpkgs = {
config = { config = {
@ -22,4 +18,16 @@ in {
]; ];
}; };
}; };
wayland.windowManager.hyprland = {
settings = {
bind = [
", XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"
", XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%-"
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
", XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl set +10%"
", XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl set 10%-"
];
};
};
} }

View file

@ -25,6 +25,7 @@
../common/global ../common/global
../common/optional/desktop/awesome.nix ../common/optional/desktop/awesome.nix
../common/optional/desktop/hyprland.nix
../common/optional/desktop/gnome.nix ../common/optional/desktop/gnome.nix
../common/optional/systemd-boot.nix ../common/optional/systemd-boot.nix