Compare commits

...

2 commits

3 changed files with 19 additions and 10 deletions

View file

@ -246,8 +246,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"
"eDP-1, 1920x1080@60, auto, 1.2" # Ludwig
",preferred,auto,auto"
];
misc = {

View file

@ -1,18 +1,14 @@
{
pkgs,
inputs,
outputs,
...
}: let
in {
{ pkgs, ... }: {
imports = [
./global
./features/desktop/awesome
./features/desktop/common/alacritty.nix
./features/desktop/hyprland
./features/desktop/gnome
./features/coding
];
home.packages = with pkgs; [nextcloud-client];
home.packages = with pkgs; [ nextcloud-client ];
nixpkgs = {
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/optional/desktop/awesome.nix
../common/optional/desktop/hyprland.nix
../common/optional/desktop/gnome.nix
../common/optional/systemd-boot.nix