dotfiles/modules/programs/hyprland/default.nix

213 lines
5.6 KiB
Nix
Raw Normal View History

2022-11-25 10:24:29 +01:00
{ config
, lib
, pkgs
, inputs
, ...
2022-11-26 16:02:02 +01:00
} @ args:
2022-11-25 10:24:29 +01:00
with lib;
let
cfg = config.my.programs.hyprland;
2022-12-30 19:01:31 +01:00
hyprland = pkgs.hyprland.override { nvidiaPatches = cfg.nvidiaSupport; };
2022-11-25 10:24:29 +01:00
in
{
options.my.programs.hyprland = {
enable = mkEnableOption "hyprland";
nvidiaSupport = mkEnableOption "enable nvidia Support";
2023-01-11 10:39:29 +01:00
blur = mkOption {
type = types.bool;
description = "enable window blurring";
default = true;
};
shadows = mkOption {
type = types.bool;
description = "enable window shadows";
default = true;
};
2022-11-25 10:24:29 +01:00
};
config = mkIf cfg.enable {
2023-01-07 17:06:29 +01:00
# enable nix module
programs.hyprland = {
enable = true;
package = null; # because we use the home-manager module
};
# enable home-manager module
2022-11-25 10:24:29 +01:00
home-manager.users.moritz = {
2023-01-07 17:06:29 +01:00
# import home-manager module
2022-11-25 10:24:29 +01:00
imports = [ inputs.hyprland.homeManagerModules.default ];
2022-11-26 16:02:02 +01:00
2022-11-25 10:24:29 +01:00
wayland.windowManager.hyprland = {
enable = true;
package = hyprland;
2022-11-26 16:02:02 +01:00
extraConfig = import ./config.nix args;
2022-11-25 10:24:29 +01:00
};
2023-01-07 17:06:29 +01:00
};
# add waybar as a status bar
home-manager.users.moritz.programs.waybar = {
enable = true;
# use package with hyprland support for switching workspaces
package = pkgs.waybar-hyprland;
2022-11-26 16:02:02 +01:00
2023-01-07 17:06:29 +01:00
# start using systemd service
systemd = {
2022-11-26 16:02:02 +01:00
enable = true;
2023-01-07 17:06:29 +01:00
target = "hyprland-session.target";
2022-11-26 16:02:02 +01:00
};
2023-01-07 17:06:29 +01:00
settings = {
mainBar = {
layer = "top";
position = "top";
height = 30;
modules-left = [ "wlr/workspaces" ];
modules-center = [ "hyprland/window" ];
modules-right = [ "network" "memory" "cpu" "battery" "clock" ];
modules = {
"wlr/workspaces" = {
on-click = "activate";
};
};
};
2022-12-23 12:39:24 +01:00
};
};
2023-01-07 17:06:29 +01:00
# lock screen after timeout
home-manager.users.moritz = {
2022-11-26 16:02:02 +01:00
services.swayidle = {
enable = true;
events = [
{
event = "before-sleep";
command = "${pkgs.swaylock-effects}/bin/swaylock -fF";
}
{
event = "lock";
command = "${pkgs.swaylock-effects}/bin/swaylock -fF";
}
];
timeouts = [
{
timeout = 300;
command = "${hyprland}/bin/hyprctl dispatch dpms off";
resumeCommand = "${hyprland}/bin/hyprctl dispatch dpms on";
}
{
timeout = 310;
command = "${pkgs.systemd}/bin/loginctl lock-session";
}
];
};
2022-11-26 16:02:02 +01:00
# start swayidle as part of hyprland, not sway
systemd.user.services.swayidle.Install.WantedBy = lib.mkForce [ "hyprland-session.target" ];
2023-01-07 17:06:29 +01:00
};
# adds pam module for swaylock
security.pam.services.swaylock = { };
# start hyprpaper daemon using systemd unit (to set wallpaper)
2022-12-23 12:39:24 +01:00
systemd.user.services.hyprpaper = {
enable = true;
path = [ pkgs.hyprpaper ];
2022-12-30 19:01:31 +01:00
wantedBy = [ "hyprland-session.target" ];
2023-01-07 17:06:29 +01:00
after = [ "hyprland-session.target" ];
2022-12-23 12:39:24 +01:00
script = "hyprpaper";
2022-11-25 10:24:29 +01:00
};
2022-11-26 16:02:02 +01:00
2023-01-07 17:06:29 +01:00
# set hyprpaper conf (for setting initial background)
home-manager.users.moritz.xdg.configFile."hypr/hyprpaper.conf" = {
2023-01-07 17:06:29 +01:00
text =
let
setWallpaper = wallpaper: ''
preload = ${wallpaper}
wallpaper = ,${wallpaper}
'';
in
setWallpaper "/home/moritz/.config/wallpapers/a_short_walk.png";
onChange = "${pkgs.systemd}/bin/systemctl restart --user hyprpaper.service";
};
# only consider graphical-session.target started when hyprland-sesstion.target is reached
systemd.user.targets.hyprland-session = {
wantedBy = [ "graphical-session.target" ];
before = [ "graphical-session.target" ];
2023-01-07 17:06:29 +01:00
};
# add user packages for wayland and hyprland in particular
2022-11-26 16:02:02 +01:00
users.users.moritz.packages = with pkgs; [
pamixer # pulse audio cli
playerctl # control media playback
brightnessctl # control brightness
grimblast # screenshot tool for hyprland
slurp # region select for wayland (for screensharing)
wl-clipboard # clipboard tool for wayland
2022-11-26 16:02:02 +01:00
];
2023-01-07 17:06:29 +01:00
# additional environment variables
2022-11-26 16:02:02 +01:00
environment.sessionVariables =
{
XDG_CURRENT_DESKTOP = "Hyprland";
XDG_SESSION_TYPE = "wayland";
XDG_SESSION_DESKTOP = "Hyprland";
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
QT_QPA_PLATFORM = "wayland;xcb";
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
QT_QPA_PLATFORMTHEME = "qt5ct";
_JAVA_AWT_WM_NONEREPARENTING = "1";
2023-01-07 17:06:29 +01:00
} // (optionalAttrs cfg.nvidiaSupport
2022-11-26 16:02:02 +01:00
{
LIBVA_DRIVER_NAME = "nvidia";
XDG_SESSION_TYPE = "wayland";
GBM_BACKEND = "nvidia-drm";
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
WLR_NO_HARDWARE_CURSORS = "1";
__GL_VRR_ALLOWED = "0";
2023-01-07 17:06:29 +01:00
});
2022-11-26 16:02:02 +01:00
2022-12-23 12:39:24 +01:00
services = {
dbus.enable = true;
2023-01-07 17:06:29 +01:00
# use pipewire (needed for screensharing)
2022-12-23 12:39:24 +01:00
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
xserver = {
enable = true;
displayManager = {
2023-01-02 16:17:38 +01:00
lightdm.enable = true;
2022-12-23 12:39:24 +01:00
autoLogin = {
enable = true;
user = "moritz";
};
defaultSession = "hyprland";
2023-01-07 17:06:29 +01:00
sessionPackages = [ hyprland ]; # can't set the defaultSession otherwise
2022-11-26 16:02:02 +01:00
};
2022-11-25 10:24:29 +01:00
};
};
2022-12-23 12:39:24 +01:00
security.rtkit.enable = true;
2022-11-26 16:02:02 +01:00
2023-01-07 17:06:29 +01:00
# dekstop portal (for screensharing)
2022-11-25 10:24:29 +01:00
xdg.portal = {
enable = true;
wlr.enable = true;
2022-12-30 19:01:31 +01:00
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
2022-11-25 10:24:29 +01:00
};
};
}