nixos-configs/modules/greetd/default.nix

149 lines
3.6 KiB
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{
ags,
config,
2023-11-22 15:33:16 -05:00
lib,
pkgs,
...
2024-01-22 11:09:37 -05:00
}: let
2024-02-05 12:00:25 -05:00
inherit (lib) optionals readFile;
inherit (config.vars) mainUser greetdDupe mainMonitor;
# Nix stuff
isNvidia = config.hardware.nvidia.modesetting.enable;
isTouchscreen = config.hardware.sensor.iio.enable;
2023-11-25 03:24:12 -05:00
hyprland = config.home-manager.users.${mainUser}.wayland.windowManager.hyprland.finalPackage;
monitors = config.home-manager.users.${mainUser}.wayland.windowManager.hyprland.settings.monitor;
# Show Regreet on all monitors
dupeMonitors = pkgs.writeShellApplication {
name = "dupeMonitors";
runtimeInputs = [hyprland pkgs.jq];
text = ''
main="${mainMonitor}"
names="($(hyprctl -j monitors | jq -r '.[] .description'))"
if [[ "$main" == "null" ]]; then
main="''${names[0]}"
fi
for (( i=0; i<''${#names[@]}; i++ )); do
# shellcheck disable=SC2001
name=$(echo "''${names[$i]}" | sed 's/.*(\(.*\))/\1/')
# shellcheck disable=SC2001
desc=$(echo "''${names[$i]}" | sed 's/ (.*//')
if [[ "$name" != "$main" && "desc:$desc" != "$main" ]]; then
hyprctl keyword monitor "$name",preferred,auto,1,mirror,"$main"
fi
done
'';
};
2024-02-05 12:00:25 -05:00
# Check if user wants the greeter only on main monitor
setupMonitors =
if (mainMonitor != "null" && !greetdDupe)
then "hyprctl dispatch focusmonitor ${mainMonitor}"
else "dupeMonitors";
2024-02-05 12:00:25 -05:00
# Setup Hyprland as the greeter's compositor
hyprConf =
pkgs.writeText "greetd-hypr-config"
(lib.strings.concatStrings ((optionals isNvidia [
"env = LIBVA_DRIVER_NAME,nvidia\n"
"env = XDG_SESSION_TYPE,wayland\n"
"env = GBM_BACKEND,nvidia-drm\n"
"env = __GLX_VENDOR_LIBRARY_NAME,nvidia\n"
"env = WLR_NO_HARDWARE_CURSORS,1\n"
])
++ map (x: "monitor=${x}\n") monitors
++ [
2024-02-06 16:03:45 -05:00
"exec-once = ${setupMonitors}\n"
"${readFile ./hyprland.conf}\n"
2023-10-19 17:05:13 -04:00
"exec-once = ags -b greeter &> /tmp/ags.log; hyprctl dispatch exit"
]));
2023-10-19 17:05:13 -04:00
in {
2024-02-05 12:00:25 -05:00
# Add home folder for home-manager to work
users.users.greeter = {
home = "/var/lib/greeter";
createHome = true;
};
2024-02-05 12:00:25 -05:00
home-manager.users.greeter = {
imports = [
ags.homeManagerModules.default
2024-02-05 12:00:25 -05:00
../../common/vars
../../home/theme.nix
];
programs.ags.enable = true;
home = {
packages = [
hyprland
dupeMonitors
pkgs.bun
pkgs.sassc
pkgs.swww
pkgs.gtk3
pkgs.glib
];
file = {
2024-02-06 16:03:45 -05:00
".config/ags/.wallpaper".source = "${pkgs.dracula-theme}/wallpapers/waves.png";
".config/ags" = {
source = ../ags/config;
recursive = true;
};
".config/ags/config.js".text =
/*
javascript
*/
''
import { transpileTypeScript } from './js/utils.js';
export default (await transpileTypeScript('greeter')).default;
'';
};
};
2023-10-19 17:05:13 -04:00
2024-02-05 12:00:25 -05:00
vars = config.vars;
home.stateVersion = "24.05";
2023-10-19 17:05:13 -04:00
};
services = {
xserver = {
displayManager = {
sessionPackages = [hyprland];
};
libinput.enable = true;
wacom.enable = isTouchscreen;
};
greetd = {
enable = true;
settings = {
default_session = {
command = "Hyprland --config ${hyprConf}";
user = "greeter";
};
initial_session = {
command = "Hyprland";
user = mainUser;
};
2023-10-19 17:05:13 -04:00
};
};
};
# unlock GPG keyring on login
services.gnome.gnome-keyring.enable = true;
security.pam.services.greetd.enableGnomeKeyring = true;
}