42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
niri = "${config.programs.niri.package}/bin/niri";
|
|
|
|
cfg = config.custom.desktops.niri.misc;
|
|
in {
|
|
options.custom.desktops.niri.misc = {
|
|
enable = mkOption {default = false;};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.${config.custom.username} = {
|
|
programs.niri.settings = {
|
|
# https://github.com/YaLTeR/niri/wiki/Configuration:-Miscellaneous
|
|
|
|
# HACK: Inherit home-manager environment variables in lieu of upstream fix
|
|
# https://github.com/nix-community/home-manager/issues/2659
|
|
# https://github.com/YaLTeR/niri/wiki/Configuration:-Miscellaneous#environment
|
|
environment = mapAttrs (name: value: builtins.toString value) config.home-manager.users.${config.custom.username}.home.sessionVariables;
|
|
|
|
cursor = {
|
|
hide-after-inactive-ms = 1000 * 15; # Milliseconds
|
|
hide-when-typing = true;
|
|
};
|
|
|
|
hotkey-overlay.skip-at-startup = true;
|
|
prefer-no-csd = true; # Electron windows have odd borders otherwise
|
|
|
|
# https://github.com/YaLTeR/niri/wiki/Configuration:-Switch-Events
|
|
switch-events = {
|
|
# Turn display off while inhibiting suspend
|
|
lid-close.action.spawn = [niri "msg" "action" "power-off-monitors"];
|
|
lid-open.action.spawn = [niri "msg" "action" "power-on-monitors"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|