2023-12-04 00:40:27 -05:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
hyprland,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
2024-01-22 11:09:37 -05:00
|
|
|
}: let
|
|
|
|
inherit (lib) concatStringsSep optionals;
|
2024-02-05 20:26:52 -05:00
|
|
|
inherit (config.vars) mainUser;
|
2024-01-22 11:09:37 -05:00
|
|
|
|
2023-12-04 00:40:27 -05:00
|
|
|
isNvidia = config.hardware.nvidia.modesetting.enable;
|
|
|
|
in {
|
2023-12-04 01:13:24 -05:00
|
|
|
# SYSTEM CONFIG
|
2023-12-04 10:05:25 -05:00
|
|
|
imports = [
|
2024-02-05 06:25:43 -05:00
|
|
|
../dconf.nix
|
2023-12-06 15:04:52 -05:00
|
|
|
|
2024-02-05 06:25:43 -05:00
|
|
|
./packages.nix
|
|
|
|
./security.nix
|
|
|
|
];
|
2023-12-04 01:13:24 -05:00
|
|
|
|
|
|
|
services = {
|
|
|
|
dbus.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.portal = {
|
|
|
|
enable = true;
|
2024-02-21 14:41:15 -05:00
|
|
|
xdgOpenUsePortal = true;
|
|
|
|
|
|
|
|
config = {
|
|
|
|
common.default = ["gtk"];
|
|
|
|
hyprland.default = ["gtk" "hyprland"];
|
|
|
|
};
|
|
|
|
|
2023-12-04 01:13:24 -05:00
|
|
|
extraPortals = [
|
|
|
|
pkgs.xdg-desktop-portal-gtk
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
# HOME-MANAGER CONFIG
|
2024-01-09 13:13:04 -05:00
|
|
|
home-manager.users.${mainUser} = {
|
2023-12-04 00:40:27 -05:00
|
|
|
imports = [
|
2024-02-05 06:25:43 -05:00
|
|
|
./hycov.nix
|
|
|
|
./hyprgrass.nix
|
2024-02-05 09:56:42 -05:00
|
|
|
./inputs.nix
|
|
|
|
./style.nix
|
2023-12-04 00:40:27 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
2023-12-08 12:48:48 -05:00
|
|
|
package = hyprland.packages.${pkgs.system}.default;
|
2023-12-04 00:40:27 -05:00
|
|
|
|
|
|
|
settings = {
|
2023-12-04 10:05:25 -05:00
|
|
|
env = let
|
2023-12-09 17:14:12 -05:00
|
|
|
gset = pkgs.gsettings-desktop-schemas;
|
|
|
|
in
|
|
|
|
[
|
2024-02-05 09:56:42 -05:00
|
|
|
"XDG_DATA_DIRS, ${concatStringsSep ":" [
|
2023-12-04 00:40:27 -05:00
|
|
|
"${gset}/share/gsettings-schemas/${gset.name}"
|
|
|
|
"${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}"
|
|
|
|
"$XDG_DATA_DIRS"
|
|
|
|
]}"
|
|
|
|
]
|
|
|
|
++ (optionals isNvidia [
|
|
|
|
"LIBVA_DRIVER_NAME, nvidia"
|
|
|
|
"XDG_SESSION_TYPE, wayland"
|
|
|
|
"GBM_BACKEND, nvidia-drm"
|
|
|
|
"__GLX_VENDOR_LIBRARY_NAME, nvidia"
|
|
|
|
"WLR_NO_HARDWARE_CURSORS, 1"
|
|
|
|
]);
|
|
|
|
|
|
|
|
xwayland.force_zero_scaling = true;
|
|
|
|
monitor = [
|
2023-12-27 11:39:38 -05:00
|
|
|
(concatStringsSep "," [
|
2023-12-04 00:40:27 -05:00
|
|
|
"desc:Acer Technologies Acer K212HQL T3EAA0014201"
|
|
|
|
"1920x1080@60"
|
|
|
|
"840x1000, 1, transform, 3"
|
|
|
|
])
|
2023-12-27 11:39:38 -05:00
|
|
|
(concatStringsSep "," [
|
2023-12-04 00:40:27 -05:00
|
|
|
"desc:BOE 0x0964"
|
|
|
|
"1920x1200@60"
|
|
|
|
"0x2920, 1"
|
|
|
|
])
|
2023-12-27 11:39:38 -05:00
|
|
|
(concatStringsSep "," [
|
2023-12-04 00:40:27 -05:00
|
|
|
"desc:Samsung Electric Company C27JG5x HTOM100586"
|
|
|
|
"2560x1440@60"
|
|
|
|
"1920x120, 1"
|
|
|
|
])
|
2023-12-27 11:39:38 -05:00
|
|
|
(concatStringsSep "," [
|
2023-12-04 00:40:27 -05:00
|
|
|
"desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D"
|
|
|
|
"2560x1440@165"
|
|
|
|
"1920x1560, 1"
|
|
|
|
])
|
|
|
|
];
|
|
|
|
|
|
|
|
"$mainMod" = "SUPER";
|
|
|
|
|
|
|
|
bind = [
|
|
|
|
# Defaults
|
|
|
|
"$mainMod, F, fullscreen"
|
|
|
|
"$mainMod, C, killactive, "
|
|
|
|
"$mainMod SHIFT, SPACE, togglefloating, "
|
|
|
|
"$mainMod, J, layoutmsg, togglesplit"
|
|
|
|
|
|
|
|
## Move focus with arrow keys
|
|
|
|
"$mainMod, left, movefocus, l"
|
|
|
|
"$mainMod, right, movefocus, r"
|
|
|
|
"$mainMod, up, movefocus, u"
|
|
|
|
"$mainMod, down, movefocus, d"
|
|
|
|
|
|
|
|
## Move to specific workspaces
|
|
|
|
"$mainMod, 1, workspace, 1"
|
|
|
|
"$mainMod, 2, workspace, 2"
|
|
|
|
"$mainMod, 3, workspace, 3"
|
|
|
|
"$mainMod, 4, workspace, 4"
|
|
|
|
"$mainMod, 5, workspace, 5"
|
|
|
|
"$mainMod, 6, workspace, 6"
|
|
|
|
"$mainMod, 7, workspace, 7"
|
|
|
|
"$mainMod, 8, workspace, 8"
|
|
|
|
"$mainMod, 9, workspace, 9"
|
|
|
|
"$mainMod, 0, workspace, 10"
|
|
|
|
|
|
|
|
# Move active window to a workspace
|
|
|
|
"$mainMod SHIFT, 1, movetoworkspace, 1"
|
|
|
|
"$mainMod SHIFT, 2, movetoworkspace, 2"
|
|
|
|
"$mainMod SHIFT, 3, movetoworkspace, 3"
|
|
|
|
"$mainMod SHIFT, 4, movetoworkspace, 4"
|
|
|
|
"$mainMod SHIFT, 5, movetoworkspace, 5"
|
|
|
|
"$mainMod SHIFT, 6, movetoworkspace, 6"
|
|
|
|
"$mainMod SHIFT, 7, movetoworkspace, 7"
|
|
|
|
"$mainMod SHIFT, 8, movetoworkspace, 8"
|
|
|
|
"$mainMod SHIFT, 9, movetoworkspace, 9"
|
|
|
|
"$mainMod SHIFT, 0, movetoworkspace, 10"
|
|
|
|
|
2023-12-15 09:17:03 -05:00
|
|
|
",XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle & ags -r 'showSpeaker()' &"
|
2023-12-04 00:40:27 -05:00
|
|
|
",XF86AudioMicMute, exec, pactl set-source-mute @DEFAULT_SOURCE@ toggle"
|
|
|
|
];
|
|
|
|
|
|
|
|
binde = [
|
2023-12-15 09:17:03 -05:00
|
|
|
",XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+ & ags -r 'showSpeaker()' &"
|
|
|
|
",XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- & ags -r 'showSpeaker()' &"
|
2023-12-04 00:40:27 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
# Mouse Binds
|
|
|
|
bindm = [
|
|
|
|
"$mainMod, mouse:272, movewindow"
|
|
|
|
"$mainMod, mouse:273, resizewindow"
|
|
|
|
];
|
|
|
|
|
|
|
|
misc = {
|
|
|
|
disable_hyprland_logo = true;
|
|
|
|
disable_splash_rendering = true;
|
|
|
|
vfr = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
dwindle = {
|
|
|
|
smart_split = true;
|
|
|
|
special_scale_factor = 0.8;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-02-05 06:25:43 -05:00
|
|
|
# libs
|
2023-12-04 00:40:27 -05:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
# tools
|
|
|
|
bluez-tools
|
|
|
|
brightnessctl
|
|
|
|
pulseaudio
|
2023-12-04 01:13:24 -05:00
|
|
|
alsa-utils
|
|
|
|
p7zip # for reshade
|
2023-12-04 00:40:27 -05:00
|
|
|
|
|
|
|
qt5.qtwayland
|
|
|
|
qt6.qtwayland
|
|
|
|
libayatana-appindicator
|
|
|
|
xdg-utils
|
|
|
|
evtest
|
|
|
|
glib
|
|
|
|
xorg.xrandr
|
|
|
|
libinput
|
|
|
|
xclip
|
|
|
|
libnotify
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|