mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-24 18:31:43 +01:00
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
niri,
|
|
...
|
|
}@args:
|
|
let
|
|
cfg = config.modules.desktop.niri;
|
|
in
|
|
{
|
|
options.modules.desktop.niri = {
|
|
enable = lib.mkEnableOption "niri compositor";
|
|
settings = lib.mkOption {
|
|
type =
|
|
with lib.types;
|
|
let
|
|
valueType =
|
|
nullOr (oneOf [
|
|
bool
|
|
int
|
|
float
|
|
str
|
|
path
|
|
(attrsOf valueType)
|
|
(listOf valueType)
|
|
])
|
|
// {
|
|
description = "niri configuration value";
|
|
};
|
|
in
|
|
valueType;
|
|
default = { };
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable (
|
|
lib.mkMerge [
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Niri v25.08 will create X11 sockets on disk, export $DISPLAY, and spawn `xwayland-satellite` on-demand when an X11 client connects
|
|
xwayland-satellite
|
|
];
|
|
|
|
programs.niri.config = cfg.settings;
|
|
|
|
# NOTE: this executable is used by greetd to start a wayland session when system boot up
|
|
# with such a vendor-no-locking script, we can switch to another wayland compositor without modifying greetd's config in NixOS module
|
|
home.file.".wayland-session" = {
|
|
source = pkgs.writeScript "init-session" ''
|
|
# trying to stop a previous niri session
|
|
systemctl --user is-active niri.service && systemctl --user stop niri.service
|
|
# and then we start a new one
|
|
/run/current-system/sw/bin/niri-session
|
|
'';
|
|
executable = true;
|
|
};
|
|
}
|
|
(import ./settings.nix niri)
|
|
(import ./keybindings.nix niri)
|
|
(import ./spawn-at-startup.nix niri)
|
|
(import ./windowrules.nix niri)
|
|
]
|
|
);
|
|
|
|
}
|