From ed78a266a54b3c27229acd4d7c6ef2cf8beec980 Mon Sep 17 00:00:00 2001 From: bangae1 Date: Mon, 24 Nov 2025 12:44:14 +0900 Subject: [PATCH] update --- sys/desktop.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sys/desktop.nix diff --git a/sys/desktop.nix b/sys/desktop.nix new file mode 100644 index 0000000..39d309a --- /dev/null +++ b/sys/desktop.nix @@ -0,0 +1,11 @@ +{ pkgs, ...}: +{ +environment.systemPackages = [pkgs.niri]; +environment.etc."wayland-sessions/niri.desktop".text = '' + [Desktop Entry] + Name=niri + Exec=${pkgs.niri}/bin/niri-session + Type=Application + Keywords=wayland;niri; +''; +}